Skip to content

Commit 22e23d0

Browse files
committed
add some check code
1 parent 5e3c667 commit 22e23d0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tcpdns.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,11 @@ def main():
229229
if os_name == 'nt':
230230
raise Exception("Windows doesn't support daemon process")
231231
else:
232-
import daemon
233-
print '>>> Run code in daemon process'
232+
try:
233+
import daemon
234+
print '>>> Run code in daemon process'
235+
except ImportError:
236+
print '*** Please install python-daemon'
234237

235238
try:
236239
with daemon.DaemonContext():

0 commit comments

Comments
 (0)