diff --git a/CHANGES.md b/CHANGES.md index 7a2cb507..6b38f39c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +### 0.8.1 (2015-04-15 04:16:00 UTC) + +* Fix season pack search errors + + ### 0.8.0 (2015-04-13 14:00:00 UTC) * Change Wombles to use tv-dvd section diff --git a/sickbeard/search.py b/sickbeard/search.py index 10ec12a8..aa3a813c 100644 --- a/sickbeard/search.py +++ b/sickbeard/search.py @@ -166,9 +166,9 @@ def snatchEpisode(result, endStatus=SNATCHED): else: curEpObj.status = Quality.compositeStatus(endStatus, result.quality) - result = curEpObj.get_sql() - if None is not result: - sql_l.append(result) + item = curEpObj.get_sql() + if None is not item: + sql_l.append(item) if curEpObj.status not in Quality.DOWNLOADED: notifiers.notify_snatch(curEpObj._format_pattern('%SN - %Sx%0E - %EN - %QN'))