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

tpot at samba.org tpot at samba.org
Tue Sep 28 21:30:54 GMT 2004


Author: tpot
Date: 2004-09-28 21:30:54 +0000 (Tue, 28 Sep 2004)
New Revision: 2736

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/&rev=2736&nolog=1

Log:
Fix bug in Python printerdata wraper found by Daniel Jarboe.

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-09-28 19:20:00 UTC (rev 2735)
+++ branches/SAMBA_3_0/source/python/samba/printerdata.py	2004-09-28 21:30:54 UTC (rev 2736)
@@ -62,4 +62,4 @@
             return self.hnd.getprinterdataex(self.key, key)['data']
 
     def __getitem__(self, key):
-        return self.printerdata_ex_subkey(self.host, key, creds, access)
+        return self.printerdata_ex_subkey(self.host, key, self.creds, access)

Modified: trunk/source/python/samba/printerdata.py
===================================================================
--- trunk/source/python/samba/printerdata.py	2004-09-28 19:20:00 UTC (rev 2735)
+++ trunk/source/python/samba/printerdata.py	2004-09-28 21:30:54 UTC (rev 2736)
@@ -62,4 +62,4 @@
             return self.hnd.getprinterdataex(self.key, key)['data']
 
     def __getitem__(self, key):
-        return self.printerdata_ex_subkey(self.host, key, creds, access)
+        return self.printerdata_ex_subkey(self.host, key, self.creds, access)



More information about the samba-cvs mailing list