From 8bc950ef91976ee2586f5ca72b615ea628105e72 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Wed, 5 Feb 2014 09:18:08 -0500 Subject: [PATCH] fix invalid string substitution Signed-off-by: Alfredo Deza --- ceph_deploy/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph_deploy/install.py b/ceph_deploy/install.py index 8c11617..f319d58 100644 --- a/ceph_deploy/install.py +++ b/ceph_deploy/install.py @@ -111,7 +111,7 @@ def purge_data(args): distro.conn.exit() if installed_hosts: - LOG.error("ceph is still installed on: ", installed_hosts) + LOG.error("ceph is still installed on: %s", installed_hosts) raise RuntimeError("refusing to purge data while ceph is still installed") for hostname in args.host: -- 2.47.3