We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be94bb1 + af54b13 commit 8a9a910Copy full SHA for 8a9a910
local/proxy.py
@@ -43,6 +43,11 @@
43
import os
44
import glob
45
46
+default_encoding = 'utf-8'
47
+if sys.getdefaultencoding() != default_encoding:
48
+ reload(sys)
49
+ sys.setdefaultencoding(default_encoding)
50
+
51
sys.dont_write_bytecode = True
52
sys.path += glob.glob('%s/*.egg' % os.path.dirname(os.path.abspath(__file__)))
53
0 commit comments