Show
Ignore:
Timestamp:
01/05/06 16:31:39 (18 years ago)
Author:
jerome
Message:

Insufficient permission to run a command now exits with status -2.
Error in command line options now exits with status -2.
Processing interrupted with Ctrl+C (or SIGTERM) now exits with status -3.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/pkturnkey

    r2512 r2609  
    492492    except KeyboardInterrupt :         
    493493        sys.stderr.write("\nInterrupted with Ctrl+C !\n") 
     494        retcode = -3 
    494495    except PyKotaCommandLineError, msg :     
    495496        sys.stderr.write("%s : %s\n" % (sys.argv[0], msg)) 
     497        retcode = -2 
    496498    except SystemExit :         
    497499        pass