我正在开发一个应用程序,并且在pythonanywhere部署中遇到此configparser.py错误,但是该应用程序在本地运行良好。我不确定为什么会出现此错误。
回溯(最近通话最近):
文件 项目中的“ /usr/lib/python3.7/configparser.py”行845 d.update(self._sections [section])KeyError:“ cassBot”
答案 0 :(得分:0)
将“”处理为空值是configparser 3.2之前的版本中的一个错误(无法将“”存储为值)。
在您的情况下,我建议您更改这样的错误:
发件人:
except KeyError:
if section != self.default_section:
raise NoSectionError(section)
收件人:
except:
pass