summaryrefslogtreecommitdiff
path: root/pylint/checkers/exceptions.py
diff options
context:
space:
mode:
authorSteven Myint <hg@stevenmyint.com>2015-03-15 06:01:33 -0700
committerSteven Myint <hg@stevenmyint.com>2015-03-15 06:01:33 -0700
commitba50713109a0e679a826f77198a96132c7f40dd0 (patch)
treed3f5b3900480e2508930d96ebbecf594d708c997 /pylint/checkers/exceptions.py
parent047ea5c1ff59f94aba70571e38d3b69a7c434859 (diff)
downloadpylint-ba50713109a0e679a826f77198a96132c7f40dd0.tar.gz
Remove unnecessary change
Diffstat (limited to 'pylint/checkers/exceptions.py')
-rw-r--r--pylint/checkers/exceptions.py2
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):