about summary refs log tree commit diff
path: root/youtube_dl/extractor/comedycentral.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-03-28 23:06:34 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-03-28 23:06:34 +0100
commit43f775e4cade8868cda32bc71e3d84ed62665c58 (patch)
treedb3e163c3784d932b382be32672410898ecf1a04 /youtube_dl/extractor/comedycentral.py
parent8f6562448c7fe1ce6723300ed46c3f51a92c52ac (diff)
downloadyoutube-dl-43f775e4cade8868cda32bc71e3d84ed62665c58.tar.gz
youtube-dl-43f775e4cade8868cda32bc71e3d84ed62665c58.tar.xz
youtube-dl-43f775e4cade8868cda32bc71e3d84ed62665c58.zip
[comedycentral] Duration can now be a float (Fixes #2647)
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r--youtube_dl/extractor/comedycentral.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py
index ea1675cf6..60c0a4f5d 100644
--- a/youtube_dl/extractor/comedycentral.py
+++ b/youtube_dl/extractor/comedycentral.py
@@ -8,7 +8,7 @@ from ..utils import (
     compat_str,
     compat_urllib_parse,
     ExtractorError,
-    int_or_none,
+    float_or_none,
     unified_strdate,
 )
 
@@ -159,7 +159,7 @@ class ComedyCentralShowsIE(InfoExtractor):
             thumbnail = itemEl.find('.//{http://search.yahoo.com/mrss/}thumbnail').attrib.get('url')
 
             content = itemEl.find('.//{http://search.yahoo.com/mrss/}content')
-            duration = int_or_none(content.attrib.get('duration'))
+            duration = float_or_none(content.attrib.get('duration'))
             mediagen_url = content.attrib['url']
             guid = itemEl.find('.//guid').text.rpartition(':')[-1]