diff options
author | Steven Myint <hg@stevenmyint.com> | 2015-03-15 06:01:33 -0700 |
---|---|---|
committer | Steven Myint <hg@stevenmyint.com> | 2015-03-15 06:01:33 -0700 |
commit | ba50713109a0e679a826f77198a96132c7f40dd0 (patch) | |
tree | d3f5b3900480e2508930d96ebbecf594d708c997 /pylint/checkers/exceptions.py | |
parent | 047ea5c1ff59f94aba70571e38d3b69a7c434859 (diff) | |
download | pylint-ba50713109a0e679a826f77198a96132c7f40dd0.tar.gz |
Remove unnecessary change
Diffstat (limited to 'pylint/checkers/exceptions.py')
-rw-r--r-- | pylint/checkers/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/exceptions.py b/pylint/checkers/exceptions.py index eeb5693..d4c1746 100644 --- a/pylint/checkers/exceptions.py +++ b/pylint/checkers/exceptions.py @@ -332,7 +332,7 @@ class ExceptionsChecker(BaseChecker): self.add_message('duplicate-except', args=exc.name, node=handler.type) - exceptions_classes += [exc_ for _, exc_ in excs] + exceptions_classes += [exc for _, exc in excs] def register(linter): |