From: Andrew Schoen Date: Fri, 20 Oct 2017 14:58:48 +0000 (-0500) Subject: ceph-volume: terminal.write only takes one argument X-Git-Tag: v13.0.1~367^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a5454eba241abd8cc1b1a660b12a1aec7c3c16e0;p=ceph.git ceph-volume: terminal.write only takes one argument Signed-off-by: Andrew Schoen --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/zap.py b/src/ceph-volume/ceph_volume/devices/lvm/zap.py index e5d1ebcc6e7a..1d43b5a1dbdd 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/zap.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/zap.py @@ -58,7 +58,7 @@ class Zap(object): path = device logger.info("Zapping: %s", path) - terminal.write("Zapping: %s", path) + terminal.write("Zapping: %s" % path) wipefs(path) zap_data(path)