From b11d5624452b3c047c6e342d31bcaad576b30696 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 22 Nov 2020 12:33:15 -0500 Subject: [PATCH] fix splitting on multiple equals in val --- archivebox/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/main.py b/archivebox/main.py index e27dff96..4696b619 100644 --- a/archivebox/main.py +++ b/archivebox/main.py @@ -865,7 +865,7 @@ def config(config_options_str: Optional[str]=None, stderr(f' {line}') raise SystemExit(2) - raw_key, val = line.split('=') + raw_key, val = line.split('=', 1) raw_key = raw_key.upper().strip() key = get_real_name(raw_key) if key != raw_key: