Changeset 1764 for pykota/trunk
- Timestamp:
- 10/03/04 21:52:59 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/ldapstorage.py
r1761 r1764 22 22 # 23 23 # $Log$ 24 # Revision 1.79 2004/10/03 19:52:59 jalet 25 # More work done on LDAP and dumpykota 26 # 24 27 # Revision 1.78 2004/10/02 05:48:56 jalet 25 28 # Should now correctly deal with charsets both when storing into databases and when … … 1325 1328 entries = [p for p in [self.getPrinter(name) for name in self.getAllPrintersNames()] if p.Exists] 1326 1329 if entries : 1330 for entry in entries : 1331 userpquotas = [ upq for (u, upq) in self.getPrinterUsersAndQuotas(entry) ] 1327 1332 pass 1328 1333 … … 1331 1336 entries = [p for p in [self.getPrinter(name) for name in self.getAllPrintersNames()] if p.Exists] 1332 1337 if entries : 1338 for entry in entries : 1339 grouppquotas = [ gpq for (g, gpq) in self.getPrinterGroupsAndQuotas(entry) ] 1333 1340 pass 1334 1341