From f95cf7d15aa0b73ab38b65f299c05d35e923c584 Mon Sep 17 00:00:00 2001 From: "E.Smith" <31170571+azlm8t@users.noreply.github.com> Date: Sat, 9 Sep 2017 17:47:46 +0100 Subject: [PATCH] eit: Fix scrape subtitle regex to be compatible with Python test harness. (#4578) Python complained about the subtitle regex whereas they worked fine in perl and Tvh. So fix them to work in all three. Issue: #4578. --- data/conf/epggrab/eit/scrape/uk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/conf/epggrab/eit/scrape/uk b/data/conf/epggrab/eit/scrape/uk index 7329db98f..67e729bcf 100644 --- a/data/conf/epggrab/eit/scrape/uk +++ b/data/conf/epggrab/eit/scrape/uk @@ -18,8 +18,8 @@ "\\(([0-9][0-9][0-9][0-9])\\)" ], "scrape_subtitle": [ - "^\\.\\.\\.[^:.]*\\[.:] ([^.0-9][^:]*): ", - "^[0-9]+/[0-9]+[.] ?+([^:]*): ", + "^[.][.][.][^:.]*[.:] ([^.0-9][^:]*): ", + "^[0-9]+/[0-9]+[.] +([^:]*): ", "^([^.0-9][^:]+): " ] } -- 2.47.3