From 4938c09130516634124d1c3833052932fc24110a Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Wed, 8 Jun 2016 02:07:29 -0400 Subject: [PATCH] Fix bookmarks on Python 3. --- gitup/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gitup/config.py b/gitup/config.py index 2bd8cbe..6b5fbab 100644 --- a/gitup/config.py +++ b/gitup/config.py @@ -26,12 +26,12 @@ def _ensure_dirs(path): os.makedirs(dirname) def _load_config_file(config_path=None): - """Read the config file and return a config parser object.""" + """Read the config file and return a list of bookmarks.""" run_migrations() cfg_path = config_path or get_default_config_path() try: - with open(cfg_path, "rb") as config_file: + with open(cfg_path, "r") as config_file: return config_file.read().split("\n") except IOError: return [] @@ -42,7 +42,7 @@ def _save_config_file(config, config_path=None): cfg_path = config_path or get_default_config_path() _ensure_dirs(cfg_path) - with open(cfg_path, "wb") as config_file: + with open(cfg_path, "w") as config_file: config_file.write("\n".join(config)) def get_default_config_path():