Changeset 3532
- Timestamp:
- 04/17/10 23:18:11 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/ldapstorage.py
r3521 r3532 1209 1209 "pykotaCopies" : str(copies), 1210 1210 "pykotaOptions" : ((options is None) and "None") or unicodeToDatabase(options), 1211 "pykotaHostName" : str(clienthost),1211 "pykotaHostName" : unicodeToDatabase(clienthost), 1212 1212 "pykotaJobSizeBytes" : str(jobsizebytes), 1213 1213 "pykotaMD5Sum" : unicodeToDatabase(jobmd5sum), … … 1309 1309 where.append("(pykotaPrinterName=%s)" % unicodeToDatabase(printer.Name)) 1310 1310 if hostname is not None : 1311 where.append("(pykotaHostName=%s)" % hostname)1311 where.append("(pykotaHostName=%s)" % unicodeToDatabase(hostname)) 1312 1312 if billingcode is not None : 1313 1313 where.append("(pykotaBillingCode=%s)" % unicodeToDatabase(billingcode))