Replace match for --remove-bootoption by space.
authorUlrich Dangel <uli@spamt.net>
Sat, 24 Oct 2009 12:00:32 +0000 (14:00 +0200)
committerUlrich Dangel <uli@spamt.net>
Sat, 24 Oct 2009 12:19:55 +0000 (14:19 +0200)
grml2usb

index 24c81d1..fee2026 100755 (executable)
--- 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:
         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)
 
 
             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 = 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()
 
         sys.stdout.write(line)
     fileinput.close()