Skip to content

Commit

Permalink
Fixed bug where _addCacheEntry() is called with 4 paramaters
Browse files Browse the repository at this point in the history
  • Loading branch information
p0psicles authored and labrys committed Feb 28, 2016
1 parent 37d9106 commit 6aa58c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickrage/providers/GenericProvider.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def find_search_results(self, show, episodes, search_mode, manual_search=False,
logger.log(u'Adding item from search to cache: %s' % title, logger.DEBUG)
# pylint: disable=protected-access
# Access to a protected member of a client class
ci = self.cache._addCacheEntry(title, url, parse_result=parse_result)
ci = self.cache._addCacheEntry(title, url, seeders, leechers, size, parse_result=parse_result)

if ci is not None:
cl.append(ci)
Expand Down

0 comments on commit 6aa58c2

Please sign in to comment.