diff --git a/couchpotato/core/media/movie/providers/torrent/iptorrents.py b/couchpotato/core/media/movie/providers/torrent/iptorrents.py index ba2b738c..a1ad4aab 100644 --- a/couchpotato/core/media/movie/providers/torrent/iptorrents.py +++ b/couchpotato/core/media/movie/providers/torrent/iptorrents.py @@ -4,6 +4,8 @@ from couchpotato.core.media.movie.providers.base import MovieProvider log = CPLog(__name__) +autoload = 'IPTorrents' + class IPTorrents(MovieProvider, Base): diff --git a/couchpotato/core/media/movie/providers/torrent/kickasstorrents.py b/couchpotato/core/media/movie/providers/torrent/kickasstorrents.py index b7bb0253..2b9b1969 100644 --- a/couchpotato/core/media/movie/providers/torrent/kickasstorrents.py +++ b/couchpotato/core/media/movie/providers/torrent/kickasstorrents.py @@ -4,6 +4,8 @@ from couchpotato.core.media.movie.providers.base import MovieProvider log = CPLog(__name__) +autoload = 'KickAssTorrents' + class KickAssTorrents(MovieProvider, Base): pass diff --git a/couchpotato/core/media/movie/providers/torrent/passthepopcorn.py b/couchpotato/core/media/movie/providers/torrent/passthepopcorn.py index 1e994135..d1f378b6 100644 --- a/couchpotato/core/media/movie/providers/torrent/passthepopcorn.py +++ b/couchpotato/core/media/movie/providers/torrent/passthepopcorn.py @@ -4,6 +4,8 @@ from couchpotato.core.media.movie.providers.base import MovieProvider log = CPLog(__name__) +autoload = 'PassThePopcorn' + class PassThePopcorn(MovieProvider, Base):