Browse Source

Change improve handling when provider PiSexy is missing expected data.

pull/669/head
JackDandy 9 years ago
parent
commit
618cddc4e9
  1. 1
      CHANGES.md
  2. 2
      sickbeard/providers/pisexy.py

1
CHANGES.md

@ -44,6 +44,7 @@
* Update network logos to their current logo
* Remove redundant Adult Swim logos
* Add scene qualities WEB.h264 to SDTV, 720p.WEB.h264 to WEB DL 720p, and 1080p.WEB.h264 to WEB DL 1080p
* Change improve handling when provider PiSexy is missing expected data
### 0.11.10 (2016-03-17 19:00:00 UTC)

2
sickbeard/providers/pisexy.py

@ -88,7 +88,7 @@ class PiSexyProvider(generic.TorrentProvider):
download_url = self.urls['get'] % str(tr.find('a', href=rc['get'])['href']).lstrip('/')
except (AttributeError, TypeError, ValueError):
except (AttributeError, TypeError, ValueError, IndexError):
continue
if title and download_url:

Loading…
Cancel
Save