From: Taha Jahangir Date: Sun, 17 Oct 2021 05:00:27 +0000 (+0330) Subject: ceph-volume: fix a typo causing AttributeError X-Git-Tag: v15.2.16~74^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=abc752e1932914c80bae54ba41d62fa6ba55dcda;p=ceph.git ceph-volume: fix a typo causing AttributeError Signed-off-by: Taha Jahangir (cherry picked from commit 4cdbba3344fe26b6351e88ce00a8655890a02115) --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/migrate.py b/src/ceph-volume/ceph_volume/devices/lvm/migrate.py index 886b9f7b4fd6..49b465592f47 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/migrate.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/migrate.py @@ -413,7 +413,7 @@ class Migrate(object): target_lv = api.get_lv_by_fullname(self.args.target) if not target_lv: mlogger.error( - 'Target path "{}" is not a Logical Volume'.formaat( + 'Target path "{}" is not a Logical Volume'.format( self.args.target)) raise SystemExit( 'Unable to migrate to : {}'.format(self.args.target))