--- pyanaconda/ui/gui/spokes/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyanaconda/ui/gui/spokes/custom.py b/pyanaconda/ui/gui/spokes/custom.py index 6ca4a20..e788046 100644 --- a/pyanaconda/ui/gui/spokes/custom.py +++ b/pyanaconda/ui/gui/spokes/custom.py @@ -2498,7 +2498,7 @@ class CustomPartitioningSpoke(NormalSpoke, StorageChecker): # we're looking for the original vg name if data[0] == container_name: c = self.__storage.devicetree.getDeviceByName(self._device_container_name) - freeSpace = self._device_container_name.getattr(c, "freeSpace", None) + freeSpace = getattr(c, "freeSpace", None)
self._containerStore.insert(idx, self._container_store_row(freeSpace)) self._containerCombo.set_active(idx)
Ack.
On Tue, Feb 25, 2014 at 04:58:50PM -0600, David Lehman wrote:
pyanaconda/ui/gui/spokes/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyanaconda/ui/gui/spokes/custom.py b/pyanaconda/ui/gui/spokes/custom.py index 6ca4a20..e788046 100644 --- a/pyanaconda/ui/gui/spokes/custom.py +++ b/pyanaconda/ui/gui/spokes/custom.py @@ -2498,7 +2498,7 @@ class CustomPartitioningSpoke(NormalSpoke, StorageChecker): # we're looking for the original vg name if data[0] == container_name: c = self.__storage.devicetree.getDeviceByName(self._device_container_name)
freeSpace = self._device_container_name.getattr(c, "freeSpace", None)
freeSpace = getattr(c, "freeSpace", None) self._containerStore.insert(idx, self._container_store_row(freeSpace)) self._containerCombo.set_active(idx)-- 1.8.5.3
anaconda-patches mailing list anaconda-patches@lists.fedorahosted.org https://lists.fedorahosted.org/mailman/listinfo/anaconda-patches
anaconda-patches@lists.fedorahosted.org