[PATCH] Fix a traceback gathering free space info for a container. (#1069854)

Samantha N. Bueno sbueno+anaconda at redhat.com
Tue Feb 25 23:47:25 UTC 2014


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 at lists.fedorahosted.org
> https://lists.fedorahosted.org/mailman/listinfo/anaconda-patches


More information about the anaconda-patches mailing list