fix gevent
This commit is contained in:
@ -28,9 +28,8 @@ if sys.version_info < (2, 6):
|
||||
else:
|
||||
import json
|
||||
|
||||
# do this before monkey patch
|
||||
import udprelay
|
||||
|
||||
# TODO remove gevent
|
||||
try:
|
||||
import gevent
|
||||
import gevent.monkey
|
||||
@ -39,6 +38,7 @@ except ImportError:
|
||||
gevent = None
|
||||
print >>sys.stderr, 'warning: gevent not found, using threading instead'
|
||||
|
||||
|
||||
import socket
|
||||
import select
|
||||
import threading
|
||||
@ -48,6 +48,7 @@ import logging
|
||||
import getopt
|
||||
import encrypt
|
||||
import utils
|
||||
import udprelay
|
||||
|
||||
|
||||
def send_all(sock, data):
|
||||
|
Reference in New Issue
Block a user