Commit b310ba9b authored by Brian Lloyd's avatar Brian Lloyd

Fixed boo boo: import SignalHandler didn't check for posix.

parent 70555e6c
...@@ -520,8 +520,9 @@ import zdaemon ...@@ -520,8 +520,9 @@ import zdaemon
# official one. Also gets SOFTWARE_HOME, INSTANCE_HOME, and CLIENT_HOME # official one. Also gets SOFTWARE_HOME, INSTANCE_HOME, and CLIENT_HOME
import ZServer import ZServer
# install signal handlers # install signal handlers if on posix
from SignalHandler import SignalHandler if os.name == 'posix':
from SignalHandler import SignalHandler
if Zpid and not READ_ONLY: if Zpid and not READ_ONLY:
import App.FindHomes import App.FindHomes
......
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