diff options
author | sylvain thenault <sylvain.thenault@logilab.fr> | 2009-01-15 08:56:53 +0100 |
---|---|---|
committer | sylvain thenault <sylvain.thenault@logilab.fr> | 2009-01-15 08:56:53 +0100 |
commit | 20ebed73995b005f45fffa2bd8565ea086ad11a7 (patch) | |
tree | 6a8f147478b8a361ec741e891fa581379519c2b7 /checkers/variables.py | |
parent | 714b1e8596df7895450773a7dce491aa66a53828 (diff) | |
download | pylint-20ebed73995b005f45fffa2bd8565ea086ad11a7.tar.gz |
typo
Diffstat (limited to 'checkers/variables.py')
-rw-r--r-- | checkers/variables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/variables.py b/checkers/variables.py index 3dadf91..dab949c 100644 --- a/checkers/variables.py +++ b/checkers/variables.py @@ -289,7 +289,7 @@ builtins. Remember that you should avoid to define new builtins when possible.' def _loopvar_name(self, node, name): # filter variables according to node's scope # XXX used to filter parents but don't remember why, and removing this - # fixes a W0631 false positive reportedby Paul Hachmann on 2008/12 on + # fixes a W0631 false positive reported by Paul Hachmann on 2008/12 on # python-projects (added to func_use_for_or_listcomp_var test) #astmts = [stmt for stmt in node.lookup(name)[1] # if hasattr(stmt, 'ass_type')] and |