mirror of http://git.simp.i2p/simp/i2music.git
bug fix, didn't handle tracks starting with numbers right
parent
74872b4164
commit
ad3a78739a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue