Re: [PATCH 3/3] platform.checkBootRequest(): Fix use of map instead of filter

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> diff --git a/platform.py b/platform.py
> index a19ce36..3805402 100644
> --- a/platform.py
> +++ b/platform.py
> @@ -140,7 +140,7 @@ class Platform(object):
>              errors.append(_("Bootable partitions cannot be on an encrypted block device"))
>          else:
>              # Handle encrypted boot on more complicated devices.
> -            for dev in map(lambda d: d.type == "luks/dm-crypt", self.anaconda.id.storage.devices):
> +            for dev in filter(lambda d: d.type == "luks/dm-crypt", self.anaconda.id.storage.devices):
>                  if req in self.anaconda.id.storage.deviceDeps(dev):
>                      errors.append(_("Bootable partitions cannot be on an encrypted block device"))

Good catch.  Note this will need to be slightly changed now that
self.anaconda.id no longer exists.

- Chris

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux