From: Taha Jahangir Date: Sun, 17 Oct 2021 05:00:27 +0000 (+0330) Subject: ceph-volume: fix a typo causing AttributeError X-Git-Tag: v16.2.7~35^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F43949%2Fhead;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 811ff63ee919..dc982f153b4e 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/migrate.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/migrate.py @@ -414,7 +414,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))