Skip to content

Commit

Permalink
Fix pylint run_id for Py3
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <git@stefan-marr.de>
  • Loading branch information
smarr committed Jun 18, 2018
1 parent 4655b23 commit 5145ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rebench/model/run_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def _expand_vars(self, string):
msg = ("The configuration of %s contains improper Python format strings."
% self._benchmark.name)
msg += DETAIL_INDENT + ("The command line configured is: %s" % string)
msg += DETAIL_INDENT + ("%s is not supported as key." % err.message)
msg += DETAIL_INDENT + ("%s is not supported as key." % err)
msg += DETAIL_INDENT
msg += "Only benchmark, input, variable, cores, and warmup are supported."
raise UIError(msg, err)
Expand Down

0 comments on commit 5145ee0

Please sign in to comment.