mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
ecdc57a056
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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'))
|
||||
|
|
Loading…
Reference in a new issue