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/eighttracks.py | |
parent | 3aa578cad2eae6bb5461b1b05e5471847546ff83 (diff) |
Remove useless u prefixes
Diffstat (limited to 'youtube_dl/extractor/eighttracks.py')
-rw-r--r-- | youtube_dl/extractor/eighttracks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/eighttracks.py b/youtube_dl/extractor/eighttracks.py index c1b4c729e..f4c1e2a72 100644 --- a/youtube_dl/extractor/eighttracks.py +++ b/youtube_dl/extractor/eighttracks.py @@ -125,7 +125,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', |