diff --git a/couchpotato/core/providers/info/base.py b/couchpotato/core/providers/info/base.py index 1b43ab8..efb1662 100644 --- a/couchpotato/core/providers/info/base.py +++ b/couchpotato/core/providers/info/base.py @@ -3,3 +3,7 @@ from couchpotato.core.providers.base import Provider class MovieProvider(Provider): type = 'movie' + + +class ShowProvider(Provider): + type = 'show' diff --git a/couchpotato/core/providers/show/thetvdb/__init__.py b/couchpotato/core/providers/info/thetvdb/__init__.py similarity index 100% rename from couchpotato/core/providers/show/thetvdb/__init__.py rename to couchpotato/core/providers/info/thetvdb/__init__.py diff --git a/couchpotato/core/providers/show/thetvdb/main.py b/couchpotato/core/providers/info/thetvdb/main.py similarity index 99% rename from couchpotato/core/providers/show/thetvdb/main.py rename to couchpotato/core/providers/info/thetvdb/main.py index 61ecd6b..faeeb60 100644 --- a/couchpotato/core/providers/show/thetvdb/main.py +++ b/couchpotato/core/providers/info/thetvdb/main.py @@ -1,7 +1,7 @@ from couchpotato.core.event import addEvent from couchpotato.core.helpers.encoding import simplifyString, toUnicode from couchpotato.core.logger import CPLog -from couchpotato.core.providers.show.base import ShowProvider +from couchpotato.core.providers.info.base import ShowProvider from tvdb_api import tvdb_api, tvdb_exceptions from datetime import datetime import traceback