[rhel7-branch 1/2] Fix traceback on s390x bootloader install. (#1052167)

Samantha N. Bueno sbueno+anaconda at redhat.com
Mon Jan 13 16:07:25 UTC 2014


Resolves: rhbz#1052167
---
 pyanaconda/bootloader.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index 6cf1fbd..cbf03b6 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -2092,7 +2092,7 @@ class ZIPL(BootLoader):
         buf = iutil.execWithCapture("zipl", [],
                                     root=ROOT_PATH,
                                     fatal=True)
-        for line in buf.splitlines():
+        for line in buf:
             if line.startswith("Preparing boot device: "):
                 # Output here may look like:
                 #     Preparing boot device: dasdb (0200).
-- 
1.8.3.1



More information about the anaconda-patches mailing list