summaryrefslogtreecommitdiff
path: root/source3/python
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-11-03 06:12:07 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:08 -0500
commita8d28cf0cff1048b0dba632c3c13a5c70844d7e8 (patch)
tree1a635fab7f5a74402257287b654f335b21163426 /source3/python
parent5ee08e89bfc695663f45952c5b7f2fac733ed064 (diff)
downloadsamba-a8d28cf0cff1048b0dba632c3c13a5c70844d7e8.tar.gz
samba-a8d28cf0cff1048b0dba632c3c13a5c70844d7e8.tar.bz2
samba-a8d28cf0cff1048b0dba632c3c13a5c70844d7e8.zip
r3504: Fix incorrectly applied patch. My fault - sorry!
(This used to be commit 43a7f7db3d1995089ac8fb279f36e9e8edb1d8bb)
Diffstat (limited to 'source3/python')
-rw-r--r--source3/python/samba/printerdata.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/python/samba/printerdata.py b/source3/python/samba/printerdata.py
index 81575fecb2..6c40cc4b26 100644
--- a/source3/python/samba/printerdata.py
+++ b/source3/python/samba/printerdata.py
@@ -62,4 +62,5 @@ class printerdata_ex:
return self.hnd.getprinterdataex(self.key, key)['data']
def __getitem__(self, key):
- return self.printerdata_ex_subkey(self.host, key, self.creds, access)
+ return self.printerdata_ex_subkey(
+ self.host, key, self.creds, self.access)