Skip to content

Commit

Permalink
Fix Zooqle provider manual search
Browse files Browse the repository at this point in the history
  • Loading branch information
medariox committed Jun 1, 2016
1 parent 3e0c619 commit 273a600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/providers/zooqle.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def search(self, search_strings, age=0, ep_obj=None): # pylint: disable=too-man
for search_string in search_strings[mode]:

if mode != 'RSS':
search_params = {'q': '{0}+category:TV'.format(search_strings)}
search_params = {'q': '{0} category:TV'.format(search_string)}

response = self.get_url(self.urls['search'], params=search_params, returns='response')
if not response.text:
Expand Down

0 comments on commit 273a600

Please sign in to comment.