]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
fanart: Comment out version field in module capabilities.
authorE.Smith <31170571+azlm8t@users.noreply.github.com>
Sat, 6 Oct 2018 15:18:17 +0000 (16:18 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 8 Oct 2018 12:01:16 +0000 (14:01 +0200)
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.

lib/py/tvh/tv_meta_tmdb.py
lib/py/tvh/tv_meta_tvdb.py

index e01f8b3c8a9efae40590c95f11b0deffa3dc082a..44d0082ae47ffbbf67e3684f2765b030ba648373 100755 (executable)
@@ -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,
index 64bf96d77b3d786e637da6a17ef89a66ba138846..582d212ff2939d86b820ca421894d8904e2107ab 100755 (executable)
@@ -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,