Skip to content
Snippets Groups Projects
Commit 7ad9a61e authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Merge branch 'development' of gitlab.ub.uni-bielefeld.de:sfb1288inf/opaque into development

parents 9d6e54e9 a8489a55
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ def job(job_id): ...@@ -118,7 +118,7 @@ def job(job_id):
if job.status == 'complete': if job.status == 'complete':
files[file]['results'] = {} files[file]['results'] = {}
results_dir = os.path.join(dir, 'output', file) results_dir = os.path.join(dir, 'output', file)
for result in os.listdir(results_dir): for result in sorted(os.listdir(results_dir)):
result_type = result.rsplit(".", 1)[1] result_type = result.rsplit(".", 1)[1]
files[file]['results'][result_type] = {} files[file]['results'][result_type] = {}
files[file]['results'][result_type]['path'] = os.path.join( files[file]['results'][result_type]['path'] = os.path.join(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment