From d250d4be2d1e248053f0b613aa1566596a17df38 Mon Sep 17 00:00:00 2001 From: Gui Chen Date: Tue, 13 Aug 2013 23:47:00 -0400 Subject: [PATCH] fix bootloader options omitted when extra option is more than 1, the 1st will be saved, but the others will be omitted, this patch is fixing it Fixes: #607 Signed-off-by: Gui Chen --- mic/imager/livecd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mic/imager/livecd.py b/mic/imager/livecd.py index a992ee0..49137e2 100644 --- a/mic/imager/livecd.py +++ b/mic/imager/livecd.py @@ -574,7 +574,7 @@ menu clear extra = "" if len(menu) >= 3: - extra = menu[2] + extra = ' '.join(menu[2:]) cfg += self.__get_image_stanza(is_xen, isDracut, fslabel = self.fslabel, -- 2.7.4