1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Can't += dicts. Need to dict.copy()

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:
KontiSR 2014-09-17 10:18:47 +02:00
parent c65385da96
commit 4bfb271e8d

View File

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