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):
_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):
......@@ -98,6 +98,7 @@ class ZopeService(win32serviceutil.ServiceFramework):
(self._svc_name_, ' (%s)' % self._svc_display_name_))
while 1:
start_time = time.time()
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