Remove `:' from group names.
parent
d288daecd1
commit
40ac6d58c2
|
|
@ -115,7 +115,7 @@ def main():
|
|||
os.makedirs(bgnot_dir, exist_ok=True)
|
||||
|
||||
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:
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue