More bugfixes

This commit is contained in:
2Shirt 2019-04-19 16:33:12 -07:00
parent e2d788e265
commit 731a281805
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ if __name__ == '__main__':
) )
# Update boot entries # Update boot entries
print_standard(' ')
print_info('Boot Setup') print_info('Boot Setup')
try_and_print( try_and_print(
indent=2, indent=2,

View file

@ -404,7 +404,7 @@ def update_boot_entries(boot_entries, boot_files, iso_label, ufd_label):
cmd = [ cmd = [
'sed', 'sed',
'--in-place', '--in-place',
'"s/#UFD-{}#//"'.format(b_comment), 's/#{}#//'.format(b_comment),
*configs, *configs,
] ]
run_program(cmd, check=False) run_program(cmd, check=False)