summaryrefslogtreecommitdiff
path: root/pylint
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2016-06-24 14:29:26 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2016-07-01 01:16:31 +0100
commita3dcf46301c5704ddf47fb9bbfa39ec43955f9ad (patch)
tree0461d7f04708ed27f62b2eae9fa9c6c1dc2342f5 /pylint
parent0431aeae4571c617d3764f868995ae80995f8a6c (diff)
downloadpylint-git-a3dcf46301c5704ddf47fb9bbfa39ec43955f9ad.tar.gz
Remove additional star.
Diffstat (limited to 'pylint')
-rw-r--r--pylint/checkers/variables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py
index e56e7ddc2..4fe65bb21 100644
--- a/pylint/checkers/variables.py
+++ b/pylint/checkers/variables.py
@@ -305,7 +305,7 @@ class VariablesChecker(BaseChecker):
'help' : 'Tells whether we should check for unused import in \
__init__ files.'}),
("dummy-variables-rgx",
- {'default': ('(_+[a-zA-Z0-9]*?$)|dummy*'),
+ {'default': ('(_+[a-zA-Z0-9]*?$)|dummy'),
'type' :'regexp', 'metavar' : '<regexp>',
'help' : 'A regular expression matching the name of dummy \
variables (i.e. expectedly not used).'}),