From 2db2ba781ac1a9328c9f5b016052bb7dc5d747b5 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 12 Sep 2013 16:39:55 -0500 Subject: [PATCH] Fix TypeError (cherry picked from commit c4591a16e1781f8da3502b38e3dc72f629478312) --- teuthology/task/internal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 52c2d5af99709..1d3ea2bf1acd2 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -516,7 +516,7 @@ def vm_setup(ctx, config): p.spawn(_handle_vm_init, remote) def _handle_vm_init(remote): - log.info('Running ceph_qa_chef on ', remote) + log.info('Running ceph_qa_chef on %s', remote) remote.run(args=['wget','-q','-O-', 'http://ceph.com/git/?p=ceph-qa-chef.git;a=blob_plain;f=solo/solo-from-scratch;hb=HEAD', run.Raw('|'), -- 2.39.5