Add monkey.patch for gevent

pull/2262/head
Ozzie Isaacs 2 years ago
parent 2e815147fb
commit 1a6579312f

@ -16,6 +16,11 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
try:
from gevent import monkey
monkey.patch_all()
except ImportError:
pass
import sys
import os

Loading…
Cancel
Save