1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +00:00

Fixing format string in ipynb_exporter

This commit is contained in:
Sergei Trofimov 2015-04-16 13:06:00 +01:00
parent c0bb30e12d
commit 075712d940

View File

@ -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)