[Zope-Checkins] CVS: Zope/lib/python/Zope/Startup/nt - NTService.py:1.7
Chris McDonough
chrism@zope.com
Sun, 6 Jul 2003 06:00:22 -0400
Update of /cvs-repository/Zope/lib/python/Zope/Startup/nt
In directory cvs.zope.org:/tmp/cvs-serv1951
Modified Files:
NTService.py
Log Message:
I'm not sure about the need for this, but just in case, raw-ify concated strings.
=== Zope/lib/python/Zope/Startup/nt/NTService.py 1.6 => 1.7 ===
--- Zope/lib/python/Zope/Startup/nt/NTService.py:1.6 Sun Jul 6 02:39:00 2003
+++ Zope/lib/python/Zope/Startup/nt/NTService.py Sun Jul 6 06:00:15 2003
@@ -43,9 +43,9 @@
_svc_display_name_ = r'Zope instance at C:\Zope-Instance'
start_cmd = (
- r'"C:\Program Files\Zope-2.7.0-a1\bin\pythonw.exe" '
- '"C:\Program Files\Zope-2.7.0-a1\lib\python\Zope\Startup\run.py" '
- '-C "C:\Zope-Instance\etc\zope.conf"'
+ r'"C:\Program Files\Zope-2.7.0-a1\bin\python.exe" '
+ r'"C:\Program Files\Zope-2.7.0-a1\lib\python\Zope\Startup\run.py" '
+ r'-C "C:\Zope-Instance\etc\zope.conf"'
)
def __init__(self, args):
@@ -96,6 +96,7 @@
servicemanager.EVENTLOG_INFORMATION_TYPE,
servicemanager.PYS_SERVICE_STARTED,
(self._svc_name_, ' (%s)' % self._svc_display_name_))
+
while 1: