Skip to content

Commit 42675a8

Browse files
committed
Merge pull request earwig#20 from m-s-/develop
specify config file delimiter so it doesn't barf on windows paths
2 parents fa3bb4d + 88cddb1 commit 42675a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitup/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _migrate_old_config_path():
3939
def _load_config_file(config_path=None):
4040
"""Read the config file and return a SafeConfigParser() object."""
4141
_migrate_old_config_path()
42-
config = configparser.SafeConfigParser()
42+
config = configparser.SafeConfigParser(delimiters='=')
4343
# Don't lowercase option names, because we are storing paths there:
4444
config.optionxform = lambda opt: opt
4545
config.read(config_path or get_default_config_path())

0 commit comments

Comments
 (0)