From edfeffe3dddfc20677c2a74e433cc4ac09c45690 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 11 Aug 2014 14:20:33 -0600 Subject: [PATCH] Fix format string Signed-off-by: Zack Cerza --- teuthology/run_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/run_tasks.py b/teuthology/run_tasks.py index cd2501797e..19af697527 100644 --- a/teuthology/run_tasks.py +++ b/teuthology/run_tasks.py @@ -18,7 +18,7 @@ def import_task(name): [name], 0) if hasattr(external_pkg, name): return getattr(external_pkg, name) - raise ImportError("Could not find task '%'" % name) + raise ImportError("Could not find task '%s'" % name) def run_one_task(taskname, **kwargs): -- 2.39.5