diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-26 13:06:02 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-26 13:06:02 +0100 |
commit | 8865bdeb377bc653cea66305af9bf530440771c4 (patch) | |
tree | 05725b8978c4a5888d67e772c8c68d4e3a6d737f /youtube_dl/extractor/clipfish.py | |
parent | 3aa578cad2eae6bb5461b1b05e5471847546ff83 (diff) |
Remove useless u prefixes
Diffstat (limited to 'youtube_dl/extractor/clipfish.py')
-rw-r--r-- | youtube_dl/extractor/clipfish.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/clipfish.py b/youtube_dl/extractor/clipfish.py index 669919a2c..a5c3cb7c6 100644 --- a/youtube_dl/extractor/clipfish.py +++ b/youtube_dl/extractor/clipfish.py @@ -24,7 +24,7 @@ class ClipfishIE(InfoExtractor): 'title': 'FIFA 14 - E3 2013 Trailer', 'duration': 82, }, - u'skip': 'Blocked in the US' + 'skip': 'Blocked in the US' } def _real_extract(self, url): @@ -34,7 +34,7 @@ class ClipfishIE(InfoExtractor): info_url = ('http://www.clipfish.de/devxml/videoinfo/%s?ts=%d' % (video_id, int(time.time()))) doc = self._download_xml( - info_url, video_id, note=u'Downloading info page') + info_url, video_id, note='Downloading info page') title = doc.find('title').text video_url = doc.find('filename').text if video_url is None: |