Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sublime/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def load_config():
if os.path.isfile(CONFIG_FILE):
# LOGGER.debug("Parsing configuration file: %s..." % CONFIG_FILE)
with open(CONFIG_FILE) as config_file:
config_parser.readfp(config_file)
config_parser.read(config_file)
else:
# LOGGER.debug("Configuration file not found: %s" % CONFIG_FILE)
pass
Expand Down Expand Up @@ -117,7 +117,7 @@ def save_config(config):
if os.path.isfile(CONFIG_FILE):
# LOGGER.debug("Reading configuration file: %s...", CONFIG_FILE, path=CONFIG_FILE)
with open(CONFIG_FILE) as config_file:
config_parser_existing.readfp(config_file)
config_parser_existing.read(config_file)

# if an emailrep key exists, ensure we don't overwrite it
try:
Expand Down