diff options
author | Preston Cody <codeman@gentoo.org> | 2007-12-06 03:14:49 +0000 |
---|---|---|
committer | Preston Cody <codeman@gentoo.org> | 2007-12-06 03:14:49 +0000 |
commit | ccb81744e4be27e2e9e7089b4e698a939268e394 (patch) | |
tree | 5a8011edb7253061f5d3f076aefff5338e6a65f6 | |
parent | stupid typo (diff) | |
download | gli-ccb81744e4be27e2e9e7089b4e698a939268e394.tar.gz gli-ccb81744e4be27e2e9e7089b4e698a939268e394.tar.bz2 gli-ccb81744e4be27e2e9e7089b4e698a939268e394.zip |
fix two stupid typos i should've caught earlier.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@1884 f8877401-5920-0410-a79b-8e2d7e04ca0d
-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."))] |