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

    r3288 r3294  
    2525import pwd 
    2626import grp 
     27 
     28import pykota.appinit 
     29from pykota.utils import * 
    2730 
    2831from pykota.errors import PyKotaCommandLineError 
     
    440443            retcode = manager.main(args, options) 
    441444    except KeyboardInterrupt :         
    442         sys.stderr.write("\nInterrupted with Ctrl+C !\n") 
     445        logerr("\nInterrupted with Ctrl+C !\n") 
    443446        retcode = -3 
    444447    except PyKotaCommandLineError, msg :     
    445         sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 
     448        logerr("%s : %s\n" % (sys.argv[0], msg)) 
    446449        retcode = -2 
    447450    except SystemExit :