Changeset 3294 for pykota/trunk/bin/pkusers
- Timestamp:
- 01/18/08 23:39:41 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pkusers
r3288 r3294 25 25 import pwd 26 26 import grp 27 28 import pykota.appinit 29 from pykota.utils import * 27 30 28 31 from pykota.errors import PyKotaCommandLineError … … 440 443 retcode = manager.main(args, options) 441 444 except KeyboardInterrupt : 442 sys.stderr.write("\nInterrupted with Ctrl+C !\n")445 logerr("\nInterrupted with Ctrl+C !\n") 443 446 retcode = -3 444 447 except PyKotaCommandLineError, msg : 445 sys.stderr.write("%s : %s\n" % (sys.argv[0], msg))448 logerr("%s : %s\n" % (sys.argv[0], msg)) 446 449 retcode = -2 447 450 except SystemExit :