[nbc:news] Remove unnecessary compat_str
authorSergey M․ <dstftw@gmail.com>
Sun, 20 Dec 2015 00:43:42 +0000 (06:43 +0600)
committerSergey M․ <dstftw@gmail.com>
Sun, 20 Dec 2015 00:43:42 +0000 (06:43 +0600)
youtube_dl/extractor/nbc.py

index 4c1eca96f2b789521f998b05f1d5dcae750cb678..340c922bda4b9be00bd145207eb5ad8790a3fddc 100644 (file)
@@ -3,10 +3,7 @@ from __future__ import unicode_literals
 import re
 
 from .common import InfoExtractor
-from ..compat import (
-    compat_str,
-    compat_HTTPError,
-)
+from ..compat import compat_HTTPError
 from ..utils import (
     ExtractorError,
     find_xpath_attr,
@@ -189,7 +186,7 @@ class NBCNewsIE(InfoExtractor):
                 'title': info.find('headline').text,
                 'ext': 'flv',
                 'url': find_xpath_attr(info, 'media', 'type', 'flashVideo').text,
-                'description': compat_str(info.find('caption').text),
+                'description': info.find('caption').text,
                 'thumbnail': find_xpath_attr(info, 'media', 'type', 'thumbnail').text,
             }
         else: