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
print_standard(' ')
print_info('Boot Setup')
try_and_print(
indent=2,

View file

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