diff options
author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-04-16 13:44:36 +0300 |
---|---|---|
committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-04-16 13:44:36 +0300 |
commit | ad236cb5352c3f00e9411e3322ddcce9014b37fd (patch) | |
tree | 460039590a357b252def8064a8ea0cc0cedc8294 /pylint/checkers/variables.py | |
parent | b3d33ccf2ce0c5436b61bb2f8c9c98f602506761 (diff) | |
download | pylint-ad236cb5352c3f00e9411e3322ddcce9014b37fd.tar.gz |
Remove trailing whitespace.
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): |