Skip to content

Commit

Permalink
remove references to pylint.conf, replace them with pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
ndparker committed Oct 25, 2014
1 parent f54f9c6 commit 3f96124
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py2/dev/_pylint.py
Expand Up @@ -220,7 +220,7 @@ def run(config, *args):
return 2

if config is None:
config = _shell.native('pylint.conf')
config = _shell.native('pylintrc')
argv = [
'--rcfile', config,
'--reports', 'no',
Expand Down
2 changes: 1 addition & 1 deletion py3/dev/_pylint.py
Expand Up @@ -220,7 +220,7 @@ def run(config, *args):
return 2

if config is None:
config = _shell.native('pylint.conf')
config = _shell.native('pylintrc')
argv = [
'--rcfile', config,
'--reports', 'no',
Expand Down

0 comments on commit 3f96124

Please sign in to comment.