* The curly braces were being interpreted incorrectly by print_standard()
This commit is contained in:
2Shirt 2018-09-15 16:00:24 -06:00
parent 9a093ace9c
commit da92cee338
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -285,6 +285,9 @@ def get_ie_homepages():
homepages.append(main_page)
if len(extra_pages) > 0:
homepages.extend(extra_pages)
# Remove all curly braces
homepages = [h.replace('{', '').replace('}', '') for h in homepages]
return homepages
def get_mozilla_homepages(prefs_path):