From a15c65a5e71f6fd53624bd657ab95b38d37c6f1b Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Mon, 16 Aug 2021 09:50:34 +0200 Subject: [PATCH] Fix getting PV info in LVMPhysicalVolume from the cache "self.device" is string for formats so accessing "self.device.path" results in an AttributeError. Resolves: rhbz#2079220 --- blivet/formats/lvmpv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blivet/formats/lvmpv.py b/blivet/formats/lvmpv.py index e4182adb..8cfade9f 100644 --- a/blivet/formats/lvmpv.py +++ b/blivet/formats/lvmpv.py @@ -170,7 +170,7 @@ class LVMPhysicalVolume(DeviceFormat): if self.exists: # we don't have any actual value, but the PV exists and is # active, we should try to determine it - pv_info = pvs_info.cache.get(self.device.path) + pv_info = pvs_info.cache.get(self.device) if pv_info is None: log.error("Failed to get free space information for the PV '%s'", self.device) self._free = Size(0) -- 2.35.3