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

    r3288 r3294  
    2525import os 
    2626import pwd 
     27 
     28import pykota.appinit 
     29from pykota.utils import * 
    2730 
    2831from pykota.errors import PyKotaCommandLineError 
     
    156159            retcode = sender.main(args, options) 
    157160    except KeyboardInterrupt :         
    158         sys.stderr.write("\nInterrupted with Ctrl+C !\n") 
     161        logerr("\nInterrupted with Ctrl+C !\n") 
    159162        retcode = -3 
    160163    except PyKotaCommandLineError, msg :     
    161         sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 
     164        logerr("%s : %s\n" % (sys.argv[0], msg)) 
    162165        retcode = -2 
    163166    except SystemExit :