Fixed leftover whitespaces when parsing titles

This commit is contained in:
krateng 2022-04-30 20:19:45 +02:00
parent 8cb332b9fc
commit e116690640
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class CleanerAgent:
artists = list(set(artists))
artists.sort()
return (artists,title)
return (artists,title.strip())
def removespecial(self,s):
if isinstance(s,list):