summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcpopa <devnull@localhost>2013-07-24 13:30:01 +0300
committercpopa <devnull@localhost>2013-07-24 13:30:01 +0300
commit1c8db4963638b5382cee2fc6c8c949d2f2b06974 (patch)
treeef43344d498e97fd192ae8f372bf69670f1eb2f6
parent59bd2b6f89eb579713d16ef046508c1dc436656b (diff)
downloadpylint-1c8db4963638b5382cee2fc6c8c949d2f2b06974.tar.gz
Prefer the symbolic name.
-rw-r--r--checkers/variables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/variables.py b/checkers/variables.py
index 2517b0c..367685d 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)))