From 8ffb8bf944d1fafa2b01a0adb9f60d87b962aef9 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 28 Sep 2004 21:30:54 +0000 Subject: r2736: Fix bug in Python printerdata wraper found by Daniel Jarboe. (This used to be commit 8ec28d613d6dcade135b314c6764fbafcc8ed79c) --- source3/python/samba/printerdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/python/samba/printerdata.py b/source3/python/samba/printerdata.py index 0b53a3dfb5..81575fecb2 100644 --- a/source3/python/samba/printerdata.py +++ b/source3/python/samba/printerdata.py @@ -62,4 +62,4 @@ class printerdata_ex: 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) -- cgit