diff options
author | Chris Lumens <clumens@redhat.com> | 2006-07-10 15:18:03 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-07-10 15:18:03 +0000 |
commit | eb14e6b57cbb169201104d220e708082cbe9d05e (patch) | |
tree | c970b59275164a2060f2d90be59754171d0aa8f3 /textw | |
parent | c7572a58e6699ad86ab22a53ce583ab38a9db04d (diff) | |
download | anaconda-eb14e6b57cbb169201104d220e708082cbe9d05e.tar.gz anaconda-eb14e6b57cbb169201104d220e708082cbe9d05e.tar.xz anaconda-eb14e6b57cbb169201104d220e708082cbe9d05e.zip |
parts is a 4-tuple in these instances, too. Hooray for (no) type checking!
Diffstat (limited to 'textw')
-rw-r--r-- | textw/upgrade_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py index 9d07e812e..71727e85a 100644 --- a/textw/upgrade_text.py +++ b/textw/upgrade_text.py @@ -195,7 +195,7 @@ class UpgradeExamineWindow: partList = [] partList.append(_("Reinstall System")) - for (drive, fs, desc) in parts: + for (drive, fs, desc, label) in parts: if drive[:5] != "/dev/": devname = "/dev/" + drive else: |