diff options
Diffstat (limited to 'pylint/checkers/variables.py')
-rw-r--r-- | pylint/checkers/variables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py index da294c1..8e3789a 100644 --- a/pylint/checkers/variables.py +++ b/pylint/checkers/variables.py @@ -524,7 +524,7 @@ builtins. Remember that you should avoid to define new builtins when possible.' line = definition.fromlineno dummy_rgx = self.config.dummy_variables_rgx - if not dummy_rgx.match(name): + if not dummy_rgx.match(name): self.add_message('redefined-outer-name', args=(name, line), node=stmt) elif is_builtin(name): |