From da92cee33822f69bbd1e8e238e6eabfb2369d830 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sat, 15 Sep 2018 16:00:24 -0600 Subject: [PATCH] Fix issue #51 * The curly braces were being interpreted incorrectly by print_standard() --- .bin/Scripts/functions/browsers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bin/Scripts/functions/browsers.py b/.bin/Scripts/functions/browsers.py index b969a59c..c6d39db9 100644 --- a/.bin/Scripts/functions/browsers.py +++ b/.bin/Scripts/functions/browsers.py @@ -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):