Changeset 2214 for pykota/trunk
- Timestamp:
- 04/22/05 23:19:29 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r2211 r2214 22 22 PyKota NEWS : 23 23 24 - 1.22alpha8 : 25 26 - Fixed an i18n problem with Python 2.1 27 24 28 - 1.22alpha7 : 25 29 -
pykota/trunk/pykota/tool.py
r2210 r2214 97 97 localecharset = locale.getpreferredencoding() 98 98 except AttributeError : 99 localecharset = locale.getlocale()[1]100 99 try : 100 localecharset = locale.getlocale()[1] 101 101 localecharset = localecharset or locale.getdefaultlocale()[1] 102 102 except ValueError : -
pykota/trunk/pykota/version.py
r2211 r2214 22 22 # 23 23 24 __version__ = "1.22alpha 7_unofficial"24 __version__ = "1.22alpha8_unofficial" 25 25 26 26 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""