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
commitf504cfc9275820081f9dfdf3693b4854f8140d76 (patch)
tree7fd0634b0c6ffa716524fc8c2105631fd343b889
parent4b3ac36ed3a94034b5eb7f3f84f0d7a7c3f10abf (diff)
downloadpylint-f504cfc9275820081f9dfdf3693b4854f8140d76.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 b0f5c30..f474eec 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)