Update of /cvsroot/pywin32/pywin32/win32/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv24852
Modified Files:
win32serviceutil.py
Log Message:
Remove an extra '.exe' that appeared in an error message.
Index: win32serviceutil.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32serviceutil.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** win32serviceutil.py 16 Oct 2003 05:30:55 -0000 1.11
--- win32serviceutil.py 29 Nov 2003 06:45:55 -0000 1.12
***************
*** 41,45 ****
return win32api.SearchPath(None, exeName)[0]
except win32api.error:
! msg = "%s is not correctly registered\nPlease locate and run %s.exe, and it will self-register\nThen run this service registration process again." % (exeName, exeName)
raise error, msg
--- 41,45 ----
return win32api.SearchPath(None, exeName)[0]
except win32api.error:
! msg = "%s is not correctly registered\nPlease locate and run %s, and it will self-register\nThen run this service registration process again." % (exeName, exeName)
raise error, msg
|