remporary reverting model sorting patch until better understanding

This commit is contained in:
mdipierro
2012-12-21 00:22:51 -06:00
parent 7c906c8b89
commit 0cdfe3d57b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.4.1-alpha.1+timestamp.2012.12.21.00.19.28
Version 2.4.1-alpha.1+timestamp.2012.12.21.00.22.11
+2 -2
View File
@@ -515,11 +515,11 @@ def run_models_in(environment):
for model in listdir(cpath, '^models_\w+\.pyc$', 0):
restricted(read_pyc(model), environment, layer=model)
path = pjoin(cpath, 'models')
models = listdir(path, '^\w+\.pyc$', 0)
models = listdir(path, '^\w+\.pyc$', 0, sort=False)
compiled = True
else:
path = pjoin(folder, 'models')
models = listdir(path, '^\w+\.py$', 0)
models = listdir(path, '^\w+\.py$', 0, sort=False)
compiled = False
n = len(path) + 1
for model in models: