Python错误:UnicodeEncodeError:“ ascii”编解码器无法编码字符

时间:2019-04-11 09:03:27

标签: python encoder

我有一个python脚本,其中一个函数从错误文件中打印一些行。

通过詹金斯执行脚本时出现以下错误。

release/bin/eat2/eat.py", line 553, in _runtest
    print('ERROR:' + msg)
UnicodeEncodeError: 'ascii' codec can't encode character '\u0447' in position 315: ordinal not in range(128)

python的默认编码为UTF-8

>>> import sys
>>> sys.getdefaultencoding()
'utf-8'

在执行脚本之前,我试图导出变量PYTHONIOENCODING=UTF-8

在脚本开头的以下行添加了

# coding: utf8

def _check_gpderrors(gdplogfile):
    LOGERROR_REGEX = re.compile("^\d+-\d+-\d+ \d+:\d+:\d+ Error:")

    errors = []
    import codecs
    f = codecs.open(logfile, 'r', encoding='utf-8')
    for line in f:
        if re.match(LOGERROR_REGEX, line):
            errors.append(line.strip())
    f.close()
    return errors

errors = {}
errors = _check_gdperrors(log_file)
for error in errors:
        msg = project_info + ': execution failed with error: ' + error + '\n'
        print('ERROR:' + msg)
        logs.append(msg)
        script_error = True

1 个答案:

答案 0 :(得分:0)

您可以尝试使用:

print('ERROR:' + msg.encode('ascii', 'ignore').decode('ascii'))

更多信息:UnicodeEncodeError