Remove `:' from group names.

This commit is contained in:
2026-03-10 15:11:14 +01:00
parent d288daecd1
commit 40ac6d58c2
+1 -1
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