commit: 48462108f3b1937bcaa19a4752246748a5fc9360
parent f8b56e95b82d9cb783c5a789b6b2770efff57b73
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Mon, 16 Dec 2013 03:43:45 +0100
[theplatform] Fix geographic restriction check
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py
@@ -38,7 +38,7 @@ class ThePlatformIE(InfoExtractor):
error_msg = next(
n.attrib['abstract']
for n in meta.findall(_x('.//smil:ref'))
- if n.attrib['title'] == u'Geographic Restriction')
+ if n.attrib.get('title') == u'Geographic Restriction')
except StopIteration:
pass
else: