fix gevent
This commit is contained in:
parent
1239f928f1
commit
9d2e042af3
1 changed files with 3 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue