|
|
@ -1,5 +1,6 @@ |
|
|
|
from couchpotato.core.helpers.encoding import tryUrlencode |
|
|
|
from couchpotato.core.helpers.variable import getIdentifier |
|
|
|
from couchpotato.core.helpers.variable import getTitle |
|
|
|
from couchpotato.core.logger import CPLog |
|
|
|
from couchpotato.core.media._base.providers.torrent.torrentpotato import Base |
|
|
|
from couchpotato.core.media.movie.providers.base import MovieProvider |
|
|
@ -16,5 +17,6 @@ class TorrentPotato(MovieProvider, Base): |
|
|
|
'user': host['name'], |
|
|
|
'passkey': host['pass_key'], |
|
|
|
'imdbid': getIdentifier(media), |
|
|
|
'search' : getTitle(media), |
|
|
|
}) |
|
|
|
return '%s?%s' % (host['host'], arguments) |
|
|
|