Commit 9fd75b30 authored by Chris McDonough's avatar Chris McDonough

I'm not sure about the need for this, but just in case, raw-ify concated strings.

parent 18b21020
...@@ -43,9 +43,9 @@ class ZopeService(win32serviceutil.ServiceFramework): ...@@ -43,9 +43,9 @@ class ZopeService(win32serviceutil.ServiceFramework):
_svc_display_name_ = r'Zope instance at C:\Zope-Instance' _svc_display_name_ = r'Zope instance at C:\Zope-Instance'
start_cmd = ( start_cmd = (
r'"C:\Program Files\Zope-2.7.0-a1\bin\pythonw.exe" ' r'"C:\Program Files\Zope-2.7.0-a1\bin\python.exe" '
'"C:\Program Files\Zope-2.7.0-a1\lib\python\Zope\Startup\run.py" ' r'"C:\Program Files\Zope-2.7.0-a1\lib\python\Zope\Startup\run.py" '
'-C "C:\Zope-Instance\etc\zope.conf"' r'-C "C:\Zope-Instance\etc\zope.conf"'
) )
def __init__(self, args): def __init__(self, args):
...@@ -98,6 +98,7 @@ class ZopeService(win32serviceutil.ServiceFramework): ...@@ -98,6 +98,7 @@ class ZopeService(win32serviceutil.ServiceFramework):
(self._svc_name_, ' (%s)' % self._svc_display_name_)) (self._svc_name_, ' (%s)' % self._svc_display_name_))
while 1: while 1:
start_time = time.time() start_time = time.time()
info = self.createProcess(self.start_cmd) info = self.createProcess(self.start_cmd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment