summaryrefslogtreecommitdiffstats
path: root/iw/upgrade_bootloader_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-05 20:49:37 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-05 20:49:37 +0000
commit76a1a856944d1ecb05aebaed5afb999d930c3e04 (patch)
tree6fbd2fd569d049039ca298c2f1a51fd53be8f08a /iw/upgrade_bootloader_gui.py
parentb6258b765959cd213a5a9f0c60afa2674c8bf16c (diff)
downloadanaconda-76a1a856944d1ecb05aebaed5afb999d930c3e04.tar.gz
anaconda-76a1a856944d1ecb05aebaed5afb999d930c3e04.tar.xz
anaconda-76a1a856944d1ecb05aebaed5afb999d930c3e04.zip
make sure we have a bootdev also
Diffstat (limited to 'iw/upgrade_bootloader_gui.py')
-rw-r--r--iw/upgrade_bootloader_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/upgrade_bootloader_gui.py b/iw/upgrade_bootloader_gui.py
index e7d3e9ff9..add2a98c8 100644
--- a/iw/upgrade_bootloader_gui.py
+++ b/iw/upgrade_bootloader_gui.py
@@ -68,7 +68,7 @@ class UpgradeBootloaderWindow (InstallWindow):
self.update_radio = gtk.RadioButton(None, _("_Update boot loader configuration"))
updatestr = _("This will update your current boot loader.")
- if self.type != None:
+ if self.type != None and self.bootDev != None:
current = _("The installer has detected the %s boot loader "
"currently installed on %s.") % (self.type,
self.bootDev)