Skip to content

Commit

Permalink
gevent.coros is deprecated in gevent 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pubyun committed Dec 10, 2013
1 parent 56d8148 commit 9de7d06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/plivo/core/freeswitch/eventsocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
import gevent
import gevent.event
import gevent.socket as socket
from gevent.coros import RLock
try:
from gevent.lock import RLock
except:
from gevent.coros import RLock
import gevent.pool
from gevent import GreenletExit

Expand Down

0 comments on commit 9de7d06

Please sign in to comment.