From 503ecd290735b221f5e65830b5454c94bf3dbc0c Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Sun, 24 Jul 2022 21:27:12 +0200 Subject: [PATCH] use + separator instead of : --- scripts/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helper.py b/scripts/helper.py index 2d6bcc5d..48e28e71 100644 --- a/scripts/helper.py +++ b/scripts/helper.py @@ -139,5 +139,5 @@ def parse(l): def update_config_with_sector_opts(config, sector_opts): for o in sector_opts.split("-"): if o.startswith("CF:"): - l = o.split(":")[1:] + l = o.split("+")[1:] update_config(config, parse(l)) \ No newline at end of file