From e435ac69be3ac47eff648cbf29c4920f7f1e7450 Mon Sep 17 00:00:00 2001 From: Zhu Yanhai Date: Mon, 23 Sep 2013 18:02:33 +0800 Subject: [PATCH] xm-test: add a missing %s Obviously we need a %s here. Signed-off-by: Zhu Yanhai Acked-by: Ian Campbell --- tools/xm-test/lib/XmTestLib/Console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xm-test/lib/XmTestLib/Console.py b/tools/xm-test/lib/XmTestLib/Console.py index b92f32bb3b..e05cf0d18e 100755 --- a/tools/xm-test/lib/XmTestLib/Console.py +++ b/tools/xm-test/lib/XmTestLib/Console.py @@ -291,7 +291,7 @@ if __name__ == "__main__": try: run = t.runCmd(sys.argv[2]) except ConsoleError, e: - print "Console failed (%)" % str(e) + print "Console failed (%s)" % str(e) sys.exit(255) t._XmConsole__closeConsole() -- 2.30.2