diff options
author | David Lehman <dlehman@redhat.com> | 2008-08-29 10:27:32 -0500 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2008-08-29 10:29:06 -0500 |
commit | cbac8a8436de21c1d265fd7129dd7a3574a09c56 (patch) | |
tree | d0ea8441a8cd17395696e242803a0848c2654ab2 | |
parent | e57884969e4bed420bc6226c6f3e97d1e50cd37c (diff) | |
download | anaconda-cbac8a8436de21c1d265fd7129dd7a3574a09c56.tar.gz anaconda-cbac8a8436de21c1d265fd7129dd7a3574a09c56.tar.xz anaconda-cbac8a8436de21c1d265fd7129dd7a3574a09c56.zip |
Fix a traceback with unencrypted autopart.
-rw-r--r-- | fsset.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2248,7 +2248,7 @@ class Device: self.isSetup = 0 self.doLabel = 1 self.deviceOptions = "" - if encryption and encryption.getScheme(): + if encryption and encryption.passphrase: self.crypto = encryption if device not in ("none", None): self.crypto.setDevice(device) |