We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cac4ad commit 12e577fCopy full SHA for 12e577f
1 file changed
comiclib/scanner/20-ccloli.py
@@ -40,7 +40,7 @@ def scan(self, path: Path, id: str, metadata: dict, prev_scanners: list[str]) ->
40
if line.startswith("Category: "): metadata["categories"].add(line.removeprefix("Category: "))
41
elif line_tags:
42
if line.startswith("> "):
43
- namespace, _, names = line.removeprefix("> ").replace(":", ":").partition(':')
+ namespace, _, names = line.removeprefix("> ").replace(":", ":", 1).partition(':')
44
for name in names.split(","):
45
metadata["tags"].add(f"{namespace}:{name.strip()}")
46
else:
0 commit comments