> > diff --git a/storage/__init__.py b/storage/__init__.py > > index fdb8c91..7040104 100644 > > --- a/storage/__init__.py > > +++ b/storage/__init__.py > > @@ -1591,7 +1591,8 @@ class FSSet(object): > > devices = self.mountpoints.values() + self.swapDevices > > > > # prune crypttab -- only mappings required by one or more entries > > - for name in self.cryptTab.mappings: > > + names = self.cryptTab.mappings.keys() > > + for name in names: > > I don't really have a problem with this, but why not: > > for name in self.cryptTab.mappings.keys(): You're right. I'll go with that. > > > keep = False > > mapInfo = self.cryptTab[name] > > cryptoDev = mapInfo['device'] > > _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list