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
# official one. Also gets SOFTWARE_HOME, INSTANCE_HOME, and CLIENT_HOME
import ZServer
# install signal handlers
from SignalHandler import SignalHandler
# install signal handlers if on posix
if os.name == 'posix':
from SignalHandler import SignalHandler
if Zpid and not READ_ONLY:
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