diff options
Diffstat (limited to 'src/config.py')
-rw-r--r-- | src/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.py b/src/config.py index ed86dc9..c98b076 100644 --- a/src/config.py +++ b/src/config.py @@ -72,9 +72,9 @@ def _parse_line(line, config_file): if line[0] == "#": return {} else: - split = line.split(" ") + split = line.split() key = split[0] - value = " " if len(split) == 1 else " ".join(line.split(" ")[1:]) + value = " " if len(split) == 1 else " ".join(split[1:]) # if starting with include, then include another file in the same config if key == "include": |