博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ConfigParser.NoSectionError: No section: 'forma...
阅读量:5826 次
发布时间:2019-06-18

本文共 919 字,大约阅读时间需要 3 分钟。

  hot3.png

source code:

logging.config.fileConfig("/etc/quantum/logging.conf")

error message:

File "F:\workspace\Network Server\nsoclient\common\client_utils .py", line 18, in <module> logging.config.fileConfig("/etc/quantum/logging.conf") File "C:\Python27\lib\logging\config.py", line 70, in fileConfig formatters = _create_formatters(cp) File "C:\Python27\lib\logging\config.py", line 106, in _create_formatters flist = cp.get("formatters", "keys") File "C:\Python27\lib\ConfigParser.py", line 607, in get raise NoSectionError(section) ConfigParser.NoSectionError: No section: 'formatters'

reason:

The reason the 'formatters' is missing , is because the logging module can't load the relative file path '/etc/quantum/logging.conf' in windows. So correct way is absolute file path ' c:\etc\quantum\logging.conf '

revise code:

logging.config.fileConfig("c:\etc\quantum\logging.conf")

转载于:https://my.oschina.net/DreamG/blog/155921

你可能感兴趣的文章
MySQL用命令行导出数据库
查看>>
docker 基础
查看>>
使用Fabric自动化你的任务
查看>>
使用maatkit工具检查并同步mysql主从数据
查看>>
mongodb分片集群突然停电造成一些错误,分片无法启动
查看>>
获取ip地址解析归属地
查看>>
MongoDB与其他数据库的对比
查看>>
jboss5配置文件路径
查看>>
centos 6.2安装bind 9.8.2 master、slave与自动修改后更新
查看>>
系统监控工具----Inotify-Tools
查看>>
【翻译】Ext JS最新技巧——2014-5-12
查看>>
syslog-ng学习心得
查看>>
读书笔记-娱乐至死
查看>>
C++中STRING转为INT (转)
查看>>
ASP.NET上传多个文件
查看>>
学习:UTF-8和GBK的区别
查看>>
Shape parameter 形状参数
查看>>
【求助】小系统组成大系统所遇到的问题
查看>>
js 中英文字符串长度
查看>>
ERP/MIS系统中集成命令行式的功能调用
查看>>