Show
Ignore:
Timestamp:
01/24/08 10:12:48 (16 years ago)
Author:
jerome
Message:

It seems that the lead developer can eat his own food again...
More testing needs to be done but printing should now work again at
least with the PostgreSQL backend.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/appinit.py

    r3294 r3298  
    2323 
    2424import sys 
     25import os 
    2526import locale 
    2627import gettext 
     
    2829from pykota.utils import * 
    2930 
    30 (lang, charset) = initlocale() 
     31(lang, charset) = initlocale(os.environ.get("PYKOTALANG", ""), 
     32                             os.environ.get("PYKOTACHARSET")) 
    3133initgettext(lang, charset) 
    3234