We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e47d357 commit 0aa7efaCopy full SHA for 0aa7efa
1 file changed
src/bitmessagemain.py
@@ -10,6 +10,12 @@
10
# The software version variable is now held in shared.py
11
12
#import ctypes
13
+try:
14
+ from gevent import monkey
15
+ monkey.patch_all()
16
+except ImportError as ex:
17
+ print "cannot find gevent"
18
+
19
import signal # Used to capture a Ctrl-C keypress so that Bitmessage can shutdown gracefully.
20
# The next 3 are used for the API
21
from SimpleXMLRPCServer import *
0 commit comments