diff options
-rwxr-xr-x | src/fe/dialog/gli-dialog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe/dialog/gli-dialog.py b/src/fe/dialog/gli-dialog.py index 7af746f..473974c 100755 --- a/src/fe/dialog/gli-dialog.py +++ b/src/fe/dialog/gli-dialog.py @@ -479,7 +479,7 @@ Press OK to continue""") choice_list.append((drive, devices[drive].get_model())) self._drives = drives #Store for use in mounts. self._devices = devices #Store for use in mounts. - if not choices_list: + if not choice_list: self._d.msgbox(_(u"Error: no hard drives found. Please load the appropriate modules for these drives and restart the installer.")) sys.exit(0) while 1: @@ -1079,7 +1079,7 @@ Press OK to continue""") # This section will be for choosing kernel sources, choosing (and specifying) a custom config or genkernel, modules to load at startup, etc. kernel_sources = [("livecd-kernel", _(u"Copy over the current running kernel (fastest)")), ("vanilla-sources", _(u"The Unaltered Linux Kernel ver 2.6+ (safest)")), - ("gentoo-sources", _(u"Gentoo's optimized 2.6+ kernel. (RECOMMENDED)"), + ("gentoo-sources", _(u"Gentoo's optimized 2.6+ kernel. (RECOMMENDED)")), ("hardened-sources", _(u"Hardened sources for the 2.6 kernel tree")), ("grsec-sources",_(u"Vanilla sources with grsecurity patches")), (_(u"Other"), _(u"Choose one of the other sources available."))] |