From: Zack Cerza Date: Mon, 11 Aug 2014 20:20:33 +0000 (-0600) Subject: Fix format string X-Git-Tag: 1.1.0~1274 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=edfeffe3dddfc20677c2a74e433cc4ac09c45690;p=teuthology.git Fix format string Signed-off-by: Zack Cerza --- 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):