From: E.Smith <31170571+azlm8t@users.noreply.github.com> Date: Sat, 6 Oct 2018 15:18:17 +0000 (+0100) Subject: fanart: Comment out version field in module capabilities. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b031fdb61ac668191d5a104724ef3f6c0059f60;p=thirdparty%2Ftvheadend.git fanart: Comment out version field in module capabilities. The version field in the scripts should be the same version as Tvheadend. However it does not seem worthwhile at the moment to sed a version number in to the scripts since most people will install via a package manager. --- diff --git a/lib/py/tvh/tv_meta_tmdb.py b/lib/py/tvh/tv_meta_tmdb.py index e01f8b3c8..44d0082ae 100755 --- a/lib/py/tvh/tv_meta_tmdb.py +++ b/lib/py/tvh/tv_meta_tmdb.py @@ -24,7 +24,7 @@ import requests def get_capabilities(): return { "name": "tv_meta_tmdb", - "version": "0.1", + # "version": "0.1", "description": "Grab movie/tv details from TMDB.", "supports_tv": True, "supports_movie": True, diff --git a/lib/py/tvh/tv_meta_tvdb.py b/lib/py/tvh/tv_meta_tvdb.py index 64bf96d77..582d212ff 100755 --- a/lib/py/tvh/tv_meta_tvdb.py +++ b/lib/py/tvh/tv_meta_tvdb.py @@ -33,7 +33,7 @@ import requests def get_capabilities(): return { "name": "tv_meta_tvdb", - "version": "0.1", + # "version": "0.1", "description": "Grab tv details from TVDB.", "supports_tv": True, "supports_movie": False,