summaryrefslogtreecommitdiff
path: root/checkers/variables.py
diff options
context:
space:
mode:
authorcpopa <devnull@localhost>2013-07-21 17:02:38 +0300
committercpopa <devnull@localhost>2013-07-21 17:02:38 +0300
commit3ab14ecf26dca172bd499eab3e59bf8de4010e9b (patch)
tree8425a9cfc030e88c70993ef4749d59472e82b065 /checkers/variables.py
parent21820c62cf1dce002a7f707c893911a6ebf2e024 (diff)
downloadpylint-3ab14ecf26dca172bd499eab3e59bf8de4010e9b.tar.gz
Prefer the symbolic message.
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 e59a304..02ed3df 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -542,7 +542,7 @@ builtins. Remember that you should avoid to define new builtins when possible.'
continue
self._check_module_attrs(node, module, name.split('.'))
- @check_messages('W0632')
+ @check_messages('unbalanced-tuple-unpacking')
def visit_assign(self, node):
""" Check unbalanced tuple unpacking for assignments. """
if not isinstance(node.value, astroid.Tuple):