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

Use correct list slicing for failed models

parent 852e38ee
No related branches found
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