diff options
author | Chris Lumens <clumens@redhat.com> | 2008-10-14 11:13:11 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-10-31 12:42:44 -0400 |
commit | 1e967cddf5416650583f2ca5070de1aa61b074d6 (patch) | |
tree | 50d4c072ca331b6887d1ec67a6ebf2e77db51f9a | |
parent | f09b6c969e373526b665b2fd9712e9c3a8fd4be5 (diff) | |
download | anaconda-1e967cddf5416650583f2ca5070de1aa61b074d6.tar.gz anaconda-1e967cddf5416650583f2ca5070de1aa61b074d6.tar.xz anaconda-1e967cddf5416650583f2ca5070de1aa61b074d6.zip |
Get the right list elements for the iscsi text interface (#466902).
-rw-r--r-- | textw/partition_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index 9f133339f..0c4bd77c8 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -1695,7 +1695,7 @@ class PartitionTypeWindow: if button == TEXT_CANCEL_CHECK: return INSTALL_BACK - (user, pw, user_in, pw_in) = entries[2:5] + (user, pw, user_in, pw_in) = entries[2:] if len(user) == 0: user = None |