Skip to content

Commit

Permalink
remove ignore_spelling parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 committed Sep 26, 2021
1 parent 1960f6a commit c6b3c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YouTube.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def search_songs(self, tracks):
name = re.sub(r' \(feat.*\..+\)', '', song['name'])
query = song['artist'] + ' ' + name
query = query.replace(" &", "")
result = self.api.search(query, ignore_spelling=True)
result = self.api.search(query)
if len(result) == 0:
notFound.append(query)
else:
Expand Down

0 comments on commit c6b3c1a

Please sign in to comment.