summaryrefslogtreecommitdiff
path: root/checkers/variables.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2013-07-24 13:30:01 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2013-07-24 13:30:01 +0300
commitb6dfd8891ddca080f45522576067d5870fdad826 (patch)
tree95fdd3ff480a3721ad91da913c43ca9b297d9b55 /checkers/variables.py
parenta81967baa63beac65fff228a02f64a8ccd3479e7 (diff)
downloadpylint-git-b6dfd8891ddca080f45522576067d5870fdad826.tar.gz
Prefer the symbolic name.
--HG-- branch : unpacking2
Diffstat (limited to 'checkers/variables.py')
-rw-r--r--checkers/variables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/variables.py b/checkers/variables.py
index 2517b0ce7..367685dfa 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -563,7 +563,7 @@ builtins. Remember that you should avoid to define new builtins when possible.'
return
if len(targets) != len(values):
- self.add_message('W0632',
+ self.add_message('unbalanced-tuple-unpacking',
node=node,
args=(len(targets), len(values)))