mirror of
https://github.com/chubin/cheat.sh
synced 2024-11-13 22:47:08 +00:00
utf-8 workaround for python 2.x
This commit is contained in:
parent
eced83f011
commit
8f78c783fe
1 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,12 @@ Configuration parameters:
|
|||
|
||||
from __future__ import print_function
|
||||
|
||||
import sys
|
||||
if sys.version_info[0] < 3:
|
||||
reload(sys)
|
||||
sys.setdefaultencoding('utf8')
|
||||
|
||||
|
||||
from gevent.monkey import patch_all
|
||||
from gevent.pywsgi import WSGIServer
|
||||
patch_all()
|
||||
|
|
Loading…
Reference in a new issue