Skip to content
Snippets Groups Projects
Commit 88a4b2e4 authored by Theophile GENTILHOMME's avatar Theophile GENTILHOMME
Browse files

Fix bug when using dev file lists

parent b4976267
No related branches found
No related tags found
2 merge requests!54Refactors the score loading and scripts functionality,!52generic plotting script for bob measure
Pipeline #
......@@ -694,9 +694,9 @@ class Hist(PlotBase):
title = self._titles[idx] if self._titles is not None else None
if title is None:
title = self._title_base if not self._print_fn else \
('%s (%s)' % (
('%s \n (%s)' % (
self._title_base,
dev_file + (" / %s" % eval_file if self._eval else "")
str(dev_file) + (" / %s" % str(eval_file) if self._eval else "")
))
return title
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment