From ab3e06837432682233b0f12e462e0d985550547e Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Fri, 8 Nov 2013 17:21:24 +0100 Subject: Fix formatting syntax, %d -> %s Signed-off-by: David Sommerseth --- rteval-cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rteval-cmd') diff --git a/rteval-cmd b/rteval-cmd index 9ac2a52..bf036f7 100755 --- a/rteval-cmd +++ b/rteval-cmd @@ -270,7 +270,7 @@ if __name__ == '__main__': rtevcfg.duration, rtevcfg.sysreport)) if not os.path.isdir(rtevcfg.workdir): - raise RuntimeError, "work directory %d does not exist" % rtevcfg.workdir + raise RuntimeError, "work directory %s does not exist" % rtevcfg.workdir rteval = RtEval(config, loadmods, measuremods, logger) -- cgit