소스 검색

[rutube] Use bool_or_none

Sergey M․ 8 년 전
부모
커밋
c3dd44e085
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      youtube_dl/extractor/rutube.py

+ 4 - 3
youtube_dl/extractor/rutube.py

@@ -12,9 +12,10 @@ from ..compat import (
 )
 from ..utils import (
     determine_ext,
-    unified_timestamp,
-    try_get,
+    bool_or_none,
     int_or_none,
+    try_get,
+    unified_timestamp,
 )
 
 
@@ -42,7 +43,7 @@ class RutubeBaseIE(InfoExtractor):
             'age_limit': age_limit,
             'view_count': int_or_none(video.get('hits')),
             'comment_count': int_or_none(video.get('comments_count')),
-            'is_live': video.get('is_livestream'),
+            'is_live': bool_or_none(video.get('is_livestream')),
         }