diff options
author | Gary Donovan <garyd@crucialfruit.com.au> | 2011-07-06 15:57:15 +1000 |
---|---|---|
committer | Gary Donovan <garyd@crucialfruit.com.au> | 2011-07-06 15:57:15 +1000 |
commit | 5f16482866e42a0761bdfd7b13ede548e97393c1 (patch) | |
tree | d6fd182411b35994bbc74dba09413b8e6f74dafb /nose | |
parent | c05923cbf90d669fd9a1439bdacac47a5b698d43 (diff) | |
download | nose-5f16482866e42a0761bdfd7b13ede548e97393c1.tar.gz |
Fix bug with mapping regex's.
Diffstat (limited to 'nose')
-rw-r--r-- | nose/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nose/config.py b/nose/config.py index ec8d4da..85db4a6 100644 --- a/nose/config.py +++ b/nose/config.py @@ -190,7 +190,7 @@ class Config(object): r'^_', r'^setup\.py$', ] - self.ignoreFiles = map(re.compile(self.ignoreFilesDefaultStrings)) + self.ignoreFiles = map(re.compile, self.ignoreFilesDefaultStrings)) self.include = None self.loggingConfig = None self.logStream = sys.stderr |