add 'category-map' option

primarily to achieve some form of backwards compatibility for
922c296482
This commit is contained in:
Mike Fährmann
2025-05-30 15:24:52 +02:00
parent 922c296482
commit 783f1c1b11
4 changed files with 42 additions and 0 deletions

View File

@@ -162,6 +162,16 @@ def status():
stdout_write(fmt(path, status))
def rename_categories(cmap):
opts = _config.get("extractor")
if not opts:
return
for old, new in cmap.items():
if old in opts and new not in opts:
opts[new] = opts[old]
def load(files=None, strict=False, loads=util.json_loads):
"""Load JSON configuration files"""
for pathfmt in files or _default_configs: