use + separator instead of :

This commit is contained in:
Fabian Neumann 2022-07-24 21:27:12 +02:00
parent a65dd4e6c2
commit 503ecd2907

View File

@ -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))