summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2010-05-11 11:03:08 +0200
committerSylvain Thénault <sylvain.thenault@logilab.fr>2010-05-11 11:03:08 +0200
commit44103ba35cc481332d1181cb385048f7d070da8a (patch)
treeffd4fa05b4599bea1b191f28e6d6505bfa6cce20
parenta706638581bb1bfd62a37aff18f5c13b9eea341b (diff)
downloadpylint-git-44103ba35cc481332d1181cb385048f7d070da8a.tar.gz
remove deprecation warning with lgc > 0.50
-rw-r--r--lint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lint.py b/lint.py
index b0f5c300b..f474eec57 100644
--- a/lint.py
+++ b/lint.py
@@ -823,7 +823,7 @@ been issued by analysing pylint output status code
linter.disable('W0704')
linter.read_config_file()
# is there some additional plugins in the file configuration, in
- config_parser = linter._config_parser
+ config_parser = linter.cfgfile_parser
if config_parser.has_option('MASTER', 'load-plugins'):
plugins = splitstrip(config_parser.get('MASTER', 'load-plugins'))
linter.load_plugin_modules(plugins)