From a8c82c3abbd0a0a1b9d82d126872ab989bb263aa Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 9 Nov 2021 09:54:32 +0000 Subject: donwloading pkginfos --- src/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config.py') 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": -- cgit v1.2.1