diff --git a/CHANGES.md b/CHANGES.md index 25297df..b7fe82c 100644 --- a/CHANGES.md +++ b/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) diff --git a/sickbeard/providers/pisexy.py b/sickbeard/providers/pisexy.py index 7b94530..248adf7 100644 --- a/sickbeard/providers/pisexy.py +++ b/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):