diff options
Diffstat (limited to 'textw')
-rw-r--r-- | textw/upgrade_text.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py index 2b5ea9e06..b118a2010 100644 --- a/textw/upgrade_text.py +++ b/textw/upgrade_text.py @@ -196,13 +196,14 @@ class UpgradeExamineWindow: else: scroll = 0 partList = [] + partList.append(_("Reinstall System")) + for (drive, fs, desc) in parts: if drive[:5] != "/dev/": devname = "/dev/" + drive else: devname = drive partList.append("%s (%s)" %(desc, drive)) - partList.append(_("Reinstall System")) (button, choice) = ListboxChoiceWindow(screen, _("System to Upgrade"), _("One or more existing Linux installations " |