summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-03-13 17:01:56 -0500
committerDavid Lehman <dlehman@redhat.com>2009-03-13 17:15:20 -0500
commitee8d802ad90bd9feffd2f6d3d735b7249495b1d9 (patch)
tree70250c3a87aa5e85800919f334a8e7f05665139f
parentce5cafb47133419e690352111b26025cbf4e1e47 (diff)
downloadanaconda-ee8d802ad90bd9feffd2f6d3d735b7249495b1d9.tar.gz
anaconda-ee8d802ad90bd9feffd2f6d3d735b7249495b1d9.tar.xz
anaconda-ee8d802ad90bd9feffd2f6d3d735b7249495b1d9.zip
Access private attribute for luks dict.
We don't want this attribute to have a getter because then it would appear in tracebacks, dumps, &c.
-rw-r--r--storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/__init__.py b/storage/__init__.py
index f0ed7d635..c786b63ca 100644
--- a/storage/__init__.py
+++ b/storage/__init__.py
@@ -206,7 +206,7 @@ class Storage(object):
# save passphrases for luks devices so we don't have to reprompt
for device in self.devices:
if device.format.type == "luks" and device.format.exists:
- self.__luksDevs[device.format.uuid] = device.format.__passphrase
+ self.__luksDevs[device.format.uuid] = device.format._LUKS__passphrase
w = self.anaconda.intf.waitWindow(_("Finding Devices"),
_("Finding storage devices..."))