Remove `:' from group names.
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user