Show
Ignore:
Timestamp:
01/18/08 23:39:41 (16 years ago)
Author:
jerome
Message:

Added modules to store utility functions and application
intialization code, which has nothing to do in classes.
Modified tool.py accordingly (far from being finished)
Use these new modules where necessary.
Now converts all command line arguments to unicode before
beginning to work. Added a proper logging method for already
encoded query strings.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/pkprinters

    r3288 r3294  
    2525import sys 
    2626import pwd 
     27 
     28import pykota.appinit 
     29from pykota.utils import * 
    2730 
    2831from pykota.errors import PyKotaCommandLineError 
     
    372375            retcode = manager.main(args, options) 
    373376    except KeyboardInterrupt :         
    374         sys.stderr.write("\nInterrupted with Ctrl+C !\n") 
     377        logerr("\nInterrupted with Ctrl+C !\n") 
    375378        retcode = -3 
    376379    except PyKotaCommandLineError, msg :     
    377         sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 
     380        logerr("%s : %s\n" % (sys.argv[0], msg)) 
    378381        retcode = -2 
    379382    except SystemExit :