Changeset 2398
- Timestamp:
- 08/18/05 16:39:08 (19 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r2396 r2398 209 209 210 210 try : 211 (chtype, clienthost) = ippmessage.operation_attributes.get("job-originating-host-name", \ 212 ippmessage.job_attributes.get("job-originating-host-name", (None, None))) 211 john = ippmessage.operation_attributes.get("job-originating-host-name", \ 212 ippmessage.job_attributes.get("job-originating-host-name", (None, None))) 213 if type(john) == type([]) : 214 john = john[-1] 215 (chtype, clienthost) = john 213 216 (jbtype, bcode) = ippmessage.job_attributes.get("job-billing", (None, None)) 214 217 except AttributeError :