fixed a bug in models_to_run, thanks Anthony

This commit is contained in:
mdipierro
2013-12-20 15:09:50 -06:00
parent e0b147ead0
commit 257733e0cc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.8.2-stable+timestamp.2013.12.19.20.24.40
Version 2.8.2-stable+timestamp.2013.12.20.15.08.47
+1 -1
View File
@@ -528,7 +528,7 @@ def run_models_in(environment):
models_to_run = None
for model in models:
if response.models_to_run != models_to_run:
regex = models_to_run = response.models_to_run
regex = models_to_run = response.models_to_run[:]
if isinstance(regex, list):
regex = re_compile('|'.join(regex))
if models_to_run: