Browse Source

Merge pull request #841 from JackDandy/feature/ChangePiSProv

Change PiSexy auth check.
pull/842/head
JackDandy 9 years ago
committed by GitHub
parent
commit
80cf6494e8
  1. 1
      CHANGES.md
  2. 2
      sickbeard/providers/pisexy.py

1
CHANGES.md

@ -246,6 +246,7 @@
* Fix rTorrent auth and magnet issue
* Change torrent provider links for bts, et, rarbg, tpb
* Change IPT uri used for sanity check
* Change PiSexy auth check
### 0.11.16 (2016-10-16 17:30:00 UTC)

2
sickbeard/providers/pisexy.py

@ -41,7 +41,7 @@ class PiSexyProvider(generic.TorrentProvider):
def _authorised(self, **kwargs):
return super(PiSexyProvider, self)._authorised(
logged_in=(lambda y=None: self.has_all_cookies(['uid', 'pass', 'pcode', 'pisexy'])))
logged_in=(lambda y=None: self.has_all_cookies(['uid', 'pass', 'pcode'])))
def _search_provider(self, search_params, **kwargs):

Loading…
Cancel
Save