我在我编写代码的系统上成功运行了这部分代码。当在另一台计算机上测试整个程序(克隆git)时,我在以" logging.error"开头的行上出现错误。
import logging, logging.handlers
def uncaught_errors(exctype, value, tb):
logging.error("\nTYPE: "+str(exctype)+"\nVALUE: "+str(value)+"\nTRACEBACK: ".join(traceback.format_tb(tb)))
sys.excepthook = uncaught_errors
错误说明"' NoneType'对象没有属性'错误'"
为什么我会收到错误?