From 92bde78ea49d199d7189ad16622cc9a830d1feff Mon Sep 17 00:00:00 2001 From: Christopher Rosell Date: Wed, 14 Mar 2012 16:30:45 +0100 Subject: Another ownedtv regex fix. --- src/livestreamer/plugins/ownedtv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/livestreamer/plugins/ownedtv.py b/src/livestreamer/plugins/ownedtv.py index 747e6e2..4ddeb2f 100644 --- a/src/livestreamer/plugins/ownedtv.py +++ b/src/livestreamer/plugins/ownedtv.py @@ -37,7 +37,7 @@ class OwnedTV(Plugin): data = fd.read() fd.close() - match = re.search(b"document.location.hash='/live/(\d+)'", data) + match = re.search(b"xajax_load_live_config\((\d+),", data) if match: return int(match.group(1)) -- cgit v1.2.3