Skip to content
Snippets Groups Projects
Verified Commit 89335244 authored by Rico Bergmann's avatar Rico Bergmann
Browse files

Fix the fix which unfixed the correct behaviour

parent bcb2f0cf
Branches
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ def benchmark(conf):
# if a tool failed running some model we remove that model as well as all "stronger" models
failed_model_idx = conf.Models.index(model)
available_models[tool] = conf.Models[ : failed_model_idx]
print('# Ignoring models {models} for tool {tool} in the future'.format(models=conf.Models[ : failed_model_idx], tool=tool))
print('# Ignoring models {models} for tool {tool} in the future'.format(models=conf.Models[failed_model_idx : ], tool=tool))
def clean_dir(*path):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment