From ca02c66f26d8fdc5e2d0a15e8d79ba45d123916d Mon Sep 17 00:00:00 2001 From: sax Date: Tue, 28 May 2013 15:33:06 +0000 Subject: [PATCH] Fixed login success detection. --- couchpotato/core/providers/torrent/torrentshack/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/torrent/torrentshack/main.py b/couchpotato/core/providers/torrent/torrentshack/main.py index 91a97770..2c428e28 100644 --- a/couchpotato/core/providers/torrent/torrentshack/main.py +++ b/couchpotato/core/providers/torrent/torrentshack/main.py @@ -72,4 +72,4 @@ class TorrentShack(TorrentProvider): }) def loginSuccess(self, output): - return '/logout.php' in output.lower() + return 'logout.php' in output.lower()