From: Zack Cerza Date: Tue, 7 Mar 2017 16:18:56 +0000 (-0700) Subject: provision.downburst: Fix a bug in PR #1041 X-Git-Tag: 1.1.0~448^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ba049b36da7a9a470f035a89f4c3d3bc989807bf;p=teuthology.git provision.downburst: Fix a bug in PR #1041 Looks like an argument was dropped to a string format(). Signed-off-by: Zack Cerza --- diff --git a/teuthology/provision/downburst.py b/teuthology/provision/downburst.py index 3517a0ee..2f4f4f30 100644 --- a/teuthology/provision/downburst.py +++ b/teuthology/provision/downburst.py @@ -145,7 +145,7 @@ class Downburst(object): if not_found_msg in err: log.warn("Ignoring error during destroy: %s", err) return True - log.error("Error destroying {machine}: {msg}".format(machine=self.name)) + log.error("Error destroying %s: %s", self.name, err) return False else: out_str = ': %s' % out if out else ''