Fixed whitespace when removing featArtists

This commit is contained in:
RemixDev
2021-02-01 12:33:40 +01:00
parent 0f92b72d0b
commit 0814a17600
3 changed files with 3 additions and 2 deletions

View File

@ -45,6 +45,7 @@ def removeFeatures(title):
if ")" in clean:
tempTrack += clean[clean.find(")", pos + 1) + 1:]
clean = tempTrack.strip()
clean = ' '.join(clean.split())
return clean