bug fix, didn't handle tracks starting with numbers right

main
simp 2025-03-14 02:36:48 -04:00
parent 74872b4164
commit ad3a78739a
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,8 @@ def remove_track_count(t_name:str)->str:
replaced = t_name.replace(repl_, '')
if replaced[0:1] == ' ':
replaced = replaced[1:]
else:
replaced = t_name
else:
replaced = t_name
return replaced