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/pkbcodes

    r3288 r3294  
    2525import sys 
    2626import pwd 
     27 
     28import pykota.appinit 
     29from pykota.utils import * 
    2730 
    2831from pykota.errors import PyKotaCommandLineError 
     
    199202            retcode = manager.main(args, options) 
    200203    except KeyboardInterrupt :         
    201         sys.stderr.write("\nInterrupted with Ctrl+C !\n") 
     204        logerr("\nInterrupted with Ctrl+C !\n") 
    202205        retcode = -3 
    203206    except PyKotaCommandLineError, msg :     
    204         sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 
     207        logerr("%s : %s\n" % (sys.argv[0], msg)) 
    205208        retcode = -2 
    206209    except SystemExit :