summaryrefslogtreecommitdiffstats
path: root/booty/s390.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-19 15:00:27 -0400
committerChris Lumens <clumens@redhat.com>2009-03-19 17:02:17 -0400
commitbfc10b4c4432ac564379d1771bbbda64ac0400ab (patch)
tree3a67c4df9ccb03b20a9e8ca2e7c1737607c236e4 /booty/s390.py
parent22ff5bd2d0e4f5b247c733c75ba466f9e99e8cad (diff)
downloadanaconda-bfc10b4c4432ac564379d1771bbbda64ac0400ab.tar.gz
anaconda-bfc10b4c4432ac564379d1771bbbda64ac0400ab.tar.xz
anaconda-bfc10b4c4432ac564379d1771bbbda64ac0400ab.zip
Fix writing the default= line in grub.conf (#490756).
This was caused by trying to compare an instance of an object with a string, which of course is never going to work.
Diffstat (limited to 'booty/s390.py')
-rw-r--r--booty/s390.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/booty/s390.py b/booty/s390.py
index 655d028b8..8cddb053d 100644
--- a/booty/s390.py
+++ b/booty/s390.py
@@ -27,7 +27,7 @@ class s390BootloaderInfo(bootloaderInfo):
rootDev = self.storage.fsset.rootDevice
- if rootDev == defaultDev:
+ if rootDev.name == defaultDev.name:
lilo.addEntry("default", kernelList[0][0])
else:
lilo.addEntry("default", chainList[0][0])