mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-31 10:11:17 +00:00
Fixing format string in ipynb_exporter
This commit is contained in:
parent
c0bb30e12d
commit
075712d940
@ -207,7 +207,7 @@ class IPythonNotebookExporter(ResultProcessor):
|
|||||||
out.evalue = content["evalue"]
|
out.evalue = content["evalue"]
|
||||||
out.traceback = content["traceback"]
|
out.traceback = content["traceback"]
|
||||||
else:
|
else:
|
||||||
raise ValueError("Unknown msg_type %s".format(msg_type))
|
raise ValueError("Unknown msg_type {}".format(msg_type))
|
||||||
|
|
||||||
outs.append(out)
|
outs.append(out)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user