You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am chinese, when I use in my jenkins, it cannot recognize chiese.
I have to hack cli.py like:
# encoding=utf8
import sys
is_py_v2 = True if sys.version[0] == '2' else False
if is_py_v2:
reload(sys)
sys.setdefaultencoding('utf8')
and, why not support python3?
The text was updated successfully, but these errors were encountered:
I am chinese, when I use in my jenkins, it cannot recognize chiese.
I have to hack cli.py like:
# encoding=utf8
import sys
is_py_v2 = True if sys.version[0] == '2' else False
if is_py_v2:
reload(sys)
sys.setdefaultencoding('utf8')
and, why not support python3?
The text was updated successfully, but these errors were encountered: