修复解析没有结果的问题

This commit is contained in:
shmilylty
2019-10-26 17:58:31 +08:00
parent e66c6d7e21
commit f30f48aea2
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ def request_callback(future, index, datas):
try:
result = future.result()
except BaseException as e:
logger.log('DEBUG', e.args)
logger.log('TRACE', e.args)
datas[index]['reason'] = str(e.args)
datas[index]['valid'] = 0
else: