]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Fix format string
authorZack Cerza <zack.cerza@inktank.com>
Mon, 11 Aug 2014 20:20:33 +0000 (14:20 -0600)
committerZack Cerza <zack.cerza@inktank.com>
Mon, 11 Aug 2014 20:20:33 +0000 (14:20 -0600)
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
teuthology/run_tasks.py

index cd2501797e7c0e761c7b8c3b50151ab33add34f8..19af697527a6ea3d133819e97f679b70ea2cc12b 100644 (file)
@@ -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):