1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-11-11 03:45:01 -05:00

Merge pull request #810 from KontiSR/dev_copy_dict_master_issue

Bug in master while doing daily search: https://sickrage.tv/forums/forum/help-support/bug-issue-reports/8358-unsupported-operand-type-s-for-dict-and-dict
This commit is contained in:
adam111316 2014-09-18 07:33:10 +08:00
commit ca2e2d4dcf

View File

@ -207,7 +207,7 @@ class GenericProvider:
results = {}
for ep in episode:
results += self.cache.findNeededEpisodes(ep)
results.update(self.cache.findNeededEpisodes(ep))
return results