X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=blobdiff_plain;f=youtube_dl%2Fextractor%2Feighttracks.py;h=9df2141c3166be943c80718ddd5e40b4b2ee0b24;hp=f093592a85da872ca0b206d222e025c08f124dff;hb=c24dfef63c55ef1a5424d11b485c3b76245448a4;hpb=754f0008ec6b87316ce3e4807f150726ff2af3c5 diff --git a/youtube_dl/extractor/eighttracks.py b/youtube_dl/extractor/eighttracks.py index f093592a8..9df2141c3 100644 --- a/youtube_dl/extractor/eighttracks.py +++ b/youtube_dl/extractor/eighttracks.py @@ -7,7 +7,7 @@ import re import time from .common import InfoExtractor -from ..utils import ( +from ..compat import ( compat_str, ExtractorError, ) @@ -143,7 +143,7 @@ class EightTracksIE(InfoExtractor): info = { 'id': compat_str(track_data['id']), 'url': track_data['track_file_stream_url'], - 'title': track_data['performer'] + u' - ' + track_data['name'], + 'title': track_data['performer'] + ' - ' + track_data['name'], 'raw_title': track_data['name'], 'uploader_id': data['user']['login'], 'ext': 'm4a',