Fix issue #51
* The curly braces were being interpreted incorrectly by print_standard()
This commit is contained in:
parent
9a093ace9c
commit
da92cee338
1 changed files with 3 additions and 0 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue