mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-06-22 16:26:09 +01:00
Fixing format string in ipynb_exporter
This commit is contained in:
@ -207,7 +207,7 @@ class IPythonNotebookExporter(ResultProcessor):
|
||||
out.evalue = content["evalue"]
|
||||
out.traceback = content["traceback"]
|
||||
else:
|
||||
raise ValueError("Unknown msg_type %s".format(msg_type))
|
||||
raise ValueError("Unknown msg_type {}".format(msg_type))
|
||||
|
||||
outs.append(out)
|
||||
|
||||
|
Reference in New Issue
Block a user