This commit is contained in:
2022-07-08 15:50:40 +02:00
parent b71525223b
commit 2a8f563a63
2 changed files with 15 additions and 20 deletions

View File

@ -40,7 +40,7 @@ def StripExt(Path):
def UndupeStr(Str, Known, Split):
while Str in Known:
Sections = Title.split(Split)
Sections = Str.split(Split)
try:
Sections[-1] = str(int(Sections[-1]) + 1)
except ValueError: