From 0037c52255b22393e9ff02d589a77ce3975a05e0 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 31 May 2018 12:17:25 +0100 Subject: [PATCH] Bug fix EDL code. --- sourcing/edl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcing/edl.py b/sourcing/edl.py index de94337..f04bb6f 100644 --- a/sourcing/edl.py +++ b/sourcing/edl.py @@ -12,7 +12,7 @@ max_sourcedoc_size = 600000 def fulfil_edl(edl): text = {} - for url, start, length in parse_edl(edl): + for url, start, length in parse_edl(edl)['spans']: if url not in text: text[url] = get_text(url)