about summary refs log tree commit diff
path: root/youtube_dl/extractor/adultswim.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-13 23:05:22 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-13 23:05:22 +0100
commitda4d4191a9037ef439ef3f93f02935c67dfcee85 (patch)
treed8873c14b057478c9591f6e581ce07143209461c /youtube_dl/extractor/adultswim.py
parenta6620ac28df7ddbe39f09575d8e9f7fe73398a00 (diff)
downloadyoutube-dl-da4d4191a9037ef439ef3f93f02935c67dfcee85.tar.gz
youtube-dl-da4d4191a9037ef439ef3f93f02935c67dfcee85.tar.xz
youtube-dl-da4d4191a9037ef439ef3f93f02935c67dfcee85.zip
Merge branch 'master' of github.com:rg3/youtube-dl
Diffstat (limited to 'youtube_dl/extractor/adultswim.py')
-rw-r--r--youtube_dl/extractor/adultswim.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py
index 39e4ca296..502a9c25a 100644
--- a/youtube_dl/extractor/adultswim.py
+++ b/youtube_dl/extractor/adultswim.py
@@ -7,6 +7,8 @@ import json
 from .common import InfoExtractor
 from ..utils import (
     ExtractorError,
+    xpath_text,
+    float_or_none,
 )
 
 
@@ -128,7 +130,8 @@ class AdultSwimIE(InfoExtractor):
                 segment_url, segment_title,
                 'Downloading segment information', 'Unable to download segment information')
 
-            segment_duration = idoc.find('.//trt').text.strip()
+            segment_duration = float_or_none(
+                xpath_text(idoc, './/trt', 'segment duration').strip())
 
             formats = []
             file_els = idoc.findall('.//files/file')