From: Alfredo Deza Date: Tue, 8 Nov 2016 16:36:59 +0000 (-0500) Subject: [RM-17823] gatherkeys: add missing argument to log call X-Git-Tag: v1.5.37~5^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=92f0a9b99806ce2c58a474397466b1ef8e441d43;p=ceph-deploy.git [RM-17823] gatherkeys: add missing argument to log call Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/gatherkeys.py b/ceph_deploy/gatherkeys.py index 9e6ca73..a5ff9c1 100644 --- a/ceph_deploy/gatherkeys.py +++ b/ceph_deploy/gatherkeys.py @@ -210,7 +210,7 @@ def gatherkeys_with_mon(args, host, dest_dir): for keytype in ["admin", "mds", "osd", "rgw"]: if not gatherkeys_missing(args, distro, rlogger, path_keytype_mon, keytype, dest_dir): # We will return failure if we fail to gather any key - rlogger.error("Failed to return '%s' key from host ", keytype, host) + rlogger.error("Failed to return '%s' key from host %s", keytype, host) return False return True