[pywin32-checkins] pywin32/win32/Lib win32serviceutil.py, 1.32, 1.33
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-02-19 00:17:42
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24102 Modified Files: win32serviceutil.py Log Message: Exit with an error code when we fail to start the service. Fixes [2613356] Index: win32serviceutil.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32serviceutil.py,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** win32serviceutil.py 19 Dec 2008 05:49:02 -0000 1.32 --- win32serviceutil.py 18 Feb 2009 21:31:49 -0000 1.33 *************** *** 575,578 **** --- 575,579 ---- except win32service.error, exc: print "Error starting service: %s" % exc.strerror + err = exc.winerror elif arg=="restart": |