aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston Cody <codeman@gentoo.org>2007-12-06 03:14:49 +0000
committerPreston Cody <codeman@gentoo.org>2007-12-06 03:14:49 +0000
commitccb81744e4be27e2e9e7089b4e698a939268e394 (patch)
tree5a8011edb7253061f5d3f076aefff5338e6a65f6
parentstupid typo (diff)
downloadgli-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-xsrc/fe/dialog/gli-dialog.py4
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."))]