问题描述
我正在开发一个应用程序,并且在pythonanywhere部署中遇到此configparser.py错误,但是该应用程序在本地运行良好。 我不确定为什么会出现此错误。
追溯(最近一次通话):
文件d.update(self._sections [section])KeyError:'cassBot'中的文件“ /usr/lib/python3.7/configparser.py”,行845
1楼
将“”视为空值是configparser 3.2之前的版本中的一个错误(这使得无法将“”存储为值)。
在您的情况下,我建议您更改绕过这样的错误:
- 打开/usr/lib/python3.7/configparser.py并编辑846,847,848行
来自:
except KeyError:
if section != self.default_section:
raise NoSectionError(section)
至 :
except:
pass