Changeset 3018 for pykota/trunk/bin/cupspykota
- Timestamp:
- 09/15/06 16:31:53 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r3013 r3018 361 361 self.OriginalJobBillingCode = None 362 362 else : 363 self.JobBillingCode = self.UTF8ToUserCharset(self.JobBillingCode) 363 364 self.OriginalJobBillingCode = self.JobBillingCode[:] 364 365 … … 466 467 action = "CANCEL" 467 468 elif line.startswith("USERNAME=") : 468 username = line.split("=", 1)[1].strip()469 username = self.userCharsetToUTF8(line.split("=", 1)[1].strip()) 469 470 self.logdebug("Seen new username [%s]" % username) 470 471 elif line.startswith("BILLINGCODE=") : 471 billingcode = line.split("=", 1)[1].strip()472 billingcode = self.userCharsetToUTF8(line.split("=", 1)[1].strip()) 472 473 self.logdebug("Seen new billing code [%s]" % billingcode) 473 474 except IOError, msg :