We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa3bb4d + 88cddb1 commit 42675a8Copy full SHA for 42675a8
gitup/config.py
@@ -39,7 +39,7 @@ def _migrate_old_config_path():
39
def _load_config_file(config_path=None):
40
"""Read the config file and return a SafeConfigParser() object."""
41
_migrate_old_config_path()
42
- config = configparser.SafeConfigParser()
+ config = configparser.SafeConfigParser(delimiters='=')
43
# Don't lowercase option names, because we are storing paths there:
44
config.optionxform = lambda opt: opt
45
config.read(config_path or get_default_config_path())
0 commit comments