From: Zhu Yanhai Date: Mon, 23 Sep 2013 10:02:33 +0000 (+0800) Subject: xm-test: add a missing %s X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6277 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e435ac69be3ac47eff648cbf29c4920f7f1e7450;p=xen.git xm-test: add a missing %s Obviously we need a %s here. Signed-off-by: Zhu Yanhai Acked-by: Ian Campbell --- 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()