svn commit: samba r3504 - branches/SAMBA_3_0/source/python/samba trunk/source/python/samba

tpot at samba.org tpot at samba.org
Wed Nov 3 06:12:09 GMT 2004


Author: tpot
Date: 2004-11-03 06:12:07 +0000 (Wed, 03 Nov 2004)
New Revision: 3504

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=3504

Log:
Fix incorrectly applied patch.  My fault - sorry!

Modified:
   branches/SAMBA_3_0/source/python/samba/printerdata.py
   trunk/source/python/samba/printerdata.py


Changeset:
Modified: branches/SAMBA_3_0/source/python/samba/printerdata.py
===================================================================
--- branches/SAMBA_3_0/source/python/samba/printerdata.py	2004-11-03 02:18:57 UTC (rev 3503)
+++ branches/SAMBA_3_0/source/python/samba/printerdata.py	2004-11-03 06:12:07 UTC (rev 3504)
@@ -62,4 +62,5 @@
             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)

Modified: trunk/source/python/samba/printerdata.py
===================================================================
--- trunk/source/python/samba/printerdata.py	2004-11-03 02:18:57 UTC (rev 3503)
+++ trunk/source/python/samba/printerdata.py	2004-11-03 06:12:07 UTC (rev 3504)
@@ -62,4 +62,5 @@
             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)



More information about the samba-cvs mailing list