diff --git a/ox/thepiratebay.py b/ox/thepiratebay.py index c6e99fb..3751897 100644 --- a/ox/thepiratebay.py +++ b/ox/thepiratebay.py @@ -60,9 +60,7 @@ def findMovieByImdb(imdb): def getId(piratebayId): if piratebayId.startswith('http://torrents.thepiratebay.org/'): piratebayId = piratebayId.split('org/')[1] - if 'tor/' in piratebayId: - piratebayId = piratebayId.split('tor/')[1] - d = findRe(piratebayId, "/(\d+)") + d = findRe(piratebayId, "tor/(\d+)") if d: piratebayId = d return piratebayId