X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=fee2026614f01a536bc8d78d84408bfbaf8009b6;hp=24c81d13f0d1e9ca22cca87d7e0a6c5ef87acc34;hb=97e62cd0ecaae9f61f45b10aed198377ae0b9c15;hpb=72c59f40019c8c8d2906f4c2b1d4864f47eb570c diff --git a/grml2usb b/grml2usb index 24c81d1..fee2026 100755 --- a/grml2usb +++ b/grml2usb @@ -1261,7 +1261,7 @@ def modify_grub_config(filename): for line in fileinput.input(filename, inplace=1): if regexe and option_re.search(line): for regex in regexe: - line = regex.sub(r'', line) + line = regex.sub(' ', line) sys.stdout.write(line) @@ -1457,7 +1457,7 @@ def adjust_syslinux_bootoptions(src, flavour): line = append_re.sub(r'\1 boot=live %s ' % bootopt, line) if option_re and option_re.search(line): for regex in regexe: - line = regex.sub('', line) + line = regex.sub(' ', line) sys.stdout.write(line) fileinput.close()