self.format -> self.device.format
Ack.
On Tue, 2009-03-03 at 18:19 -1000, David Cantrell wrote:
> The format object is self.device.format in DeviceAction.
> ---
> storage/deviceaction.py | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/storage/deviceaction.py b/storage/deviceaction.py
> index af263f0..1e2698f 100644
> --- a/storage/deviceaction.py
> +++ b/storage/deviceaction.py
> @@ -178,8 +178,8 @@ class DeviceAction(object):
> if self.isResize():
> s += " (%s)" % resize_strings[self.dir]
> if self.isFormat():
> - if self.format:
> - fmt_type = self.format.type
> + if self.device.format:
> + fmt_type = self.device.format.type
> else:
> fmt_type = None
> s += " %s on" % fmt_type
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|