summaryrefslogtreecommitdiffstats
path: root/textw/upgrade_text.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-07-10 15:18:03 +0000
committerChris Lumens <clumens@redhat.com>2006-07-10 15:18:03 +0000
commiteb14e6b57cbb169201104d220e708082cbe9d05e (patch)
treec970b59275164a2060f2d90be59754171d0aa8f3 /textw/upgrade_text.py
parentc7572a58e6699ad86ab22a53ce583ab38a9db04d (diff)
downloadanaconda-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/upgrade_text.py')
-rw-r--r--textw/upgrade_text.py2
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: