Skip to content

Commit 49430ce

Browse files
committed
base: Fix some pylint
1 parent aa82881 commit 49430ce

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

bugzilla/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,10 @@ def _open_bugzillarc(configpaths=-1):
120120
if configpaths == -1:
121121
configpaths = _default_configpaths[:]
122122

123+
# pylint: disable=protected-access
123124
configpaths = [os.path.expanduser(p) for p in
124125
Bugzilla._listify(configpaths)]
126+
# pylint: enable=protected-access
125127
cfg = SafeConfigParser()
126128
read_files = cfg.read(configpaths)
127129
if not read_files:

0 commit comments

Comments
 (0)