Changeset 3547 for pykota/trunk
- Timestamp:
- 08/17/10 03:08:14 (14 years ago)
- Location:
- pykota/trunk/pykota
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/cups.py
r3498 r3547 86 86 self.OriginatingUserName = self.OriginatingUserName.split("@", 1)[0].split("/")[0] 87 87 88 # The options weren't retrieved from the job ticket but from the 89 # command line instead, so they already are in unicode form. 90 # That's why we convert them back to the ticket's charset. 91 try : 92 self.Options = self.Options.encode(self.Charset, "replace") 93 except AttributeError : 94 pass 95 88 96 for attrib in ("OriginatingUserName", 89 97 "OriginatingHostName", -
pykota/trunk/pykota/version.py
r3545 r3547 24 24 import time 25 25 26 __version__ = "1.27alpha1 1_unofficial"26 __version__ = "1.27alpha12_unofficial" 27 27 28 28 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS."