summaryrefslogtreecommitdiffstats
path: root/abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch')
-rw-r--r--abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch b/abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch
index 2845250..f164bb1 100644
--- a/abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch
+++ b/abs/core/mythtv/stable-30/mythtv/pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch
@@ -1,14 +1,14 @@
---- src/mythtv/programs/scripts/metadata/Movie/tmdb3.py 2017-02-23 13:18:12.000000000 +0100
-+++ src/mythtv/programs/scripts/metadata/Movie/tmdb3.py 2017-02-25 13:12:40.213333328 +0100
-@@ -29,6 +29,7 @@
-
+--- src/mythtv/programs/scripts/metadata/Movie/tmdb3.py.orig 2019-06-12 14:43:30.593862061 +0000
++++ src/mythtv/programs/scripts/metadata/Movie/tmdb3.py 2019-06-12 14:55:34.110317249 +0000
+@@ -30,6 +30,7 @@
from optparse import OptionParser
import sys
+ import signal
+import re
- def buildSingle(inetref, opts):
- from MythTV.tmdb3.tmdb_exceptions import TMDBRequestInvalid
-@@ -122,11 +123,27 @@
+ def timeouthandler(signal, frame):
+ raise RuntimeError("Timed out")
+@@ -126,11 +127,27 @@
# replace all dashes from queries to work around search behavior
# as negative to all text that comes afterwards
query = query.replace('-',' ')