We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa82881 commit 49430ceCopy full SHA for 49430ce
1 file changed
bugzilla/base.py
@@ -120,8 +120,10 @@ def _open_bugzillarc(configpaths=-1):
120
if configpaths == -1:
121
configpaths = _default_configpaths[:]
122
123
+ # pylint: disable=protected-access
124
configpaths = [os.path.expanduser(p) for p in
125
Bugzilla._listify(configpaths)]
126
+ # pylint: enable=protected-access
127
cfg = SafeConfigParser()
128
read_files = cfg.read(configpaths)
129
if not read_files:
0 commit comments