summaryrefslogtreecommitdiffstats
path: root/cmdline.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-04-23 14:43:39 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-24 12:27:16 -0500
commitb0207f74f2af24a7c25eb1e3f173120b6eb9c7ec (patch)
treed183ffdcacc4489f77613a4ac5af9ef81f16ef40 /cmdline.py
parentd2ba2427d7859e4bbac27b2f3b31fc1a7690376a (diff)
downloadanaconda-b0207f74f2af24a7c25eb1e3f173120b6eb9c7ec.tar.gz
anaconda-b0207f74f2af24a7c25eb1e3f173120b6eb9c7ec.tar.xz
anaconda-b0207f74f2af24a7c25eb1e3f173120b6eb9c7ec.zip
The device passed to the luks passphrase dialogs is a string. (#492123)
Diffstat (limited to 'cmdline.py')
-rw-r--r--cmdline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline.py b/cmdline.py
index ca97a5643..2540d9b9f 100644
--- a/cmdline.py
+++ b/cmdline.py
@@ -106,7 +106,7 @@ class InstallInterface:
def passphraseEntryWindow(self, device):
print(_("Can't have a question in command line mode!"))
- print("(passphraseEntryWindow: '%s')" % device.path)
+ print("(passphraseEntryWindow: '%s')" % device)
# don't exit
while 1:
time.sleep(5)