当前位置: 代码迷 >> 综合 >> 【Python】configparser.InterpolationMissingOptionError: Bad value substitution 解决方案
  详细解决方案

【Python】configparser.InterpolationMissingOptionError: Bad value substitution 解决方案

热度:61   发布时间:2023-10-12 05:38:06.0

今天在执行接口自动化时报了一个错误,报错信息如下:

configparser.InterpolationMissingOptionError: Bad value substitution: option 'formats' in section 'log' 
contains an interpolation key 'asctime' which is not a valid option name. 
Raw value: "'%(asctime)s -- [%(filename)s-->line:%(lineno)d] - %(levelname)s: %(message)s'"

原因:

使用了自己封装的日志模块来生成日志,日志中的 Formatter 的值为: '%(asctime)s -- [%(filename)s-->line:%(lineno)d] - %(levelname)s: %(message)s'

应该是% 这一串和 ConfigParser 模块冲突了,所以报错了。

解决方案:

将 ConfigParser 模块换为 RawConfigParser 模块之后就不会报错了。

最后总结一下:
如果你对此文有任何疑问,如果你也需要接口项目实战,如果你对软件测试、接口测试、自动化测试、面试经验交流感兴趣欢迎加入:软件测试技术群:593462778,群里的免费资料都是笔者十多年测试生涯的精华。还有同行大神一起交流技术哦。

作者:暗潮汹涌
原创不易,欢迎转载,但未经作者同意请保留此段声明,并在文章页面明显位置给出原文链接。

  相关解决方案