Remove `:' from group names.

master
Sébastien Miquel 2026-03-10 15:11:14 +01:00
parent d288daecd1
commit 40ac6d58c2
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ def main():
os.makedirs(bgnot_dir, exist_ok=True) os.makedirs(bgnot_dir, exist_ok=True)
for line in lines: for line in lines:
labels = [l.strip() for l in line.split(',') if l.strip()] labels = [l.replace(":", "").strip() for l in line.split(',') if l.strip()]
if not labels: if not labels:
continue continue