From: Philipp Hagemeister Date: Tue, 21 Jan 2014 00:41:13 +0000 (+0100) Subject: [extractor/common] Clarify when and when not we generate the filename X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=9d4288b2d4a47d36a2a8fa116f1023251e436cdc;p=youtube-dl [extractor/common] Clarify when and when not we generate the filename --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 6c5d77e58..582eb4f5b 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -238,7 +238,7 @@ class InfoExtractor(object): except AttributeError: url = url_or_request if len(url) > 200: - h = hashlib.md5(url).hexdigest() + h = u'___' + hashlib.md5(url).hexdigest() url = url[:200 - len(h)] + h raw_filename = ('%s_%s.dump' % (video_id, url)) filename = sanitize_filename(raw_filename, restricted=True)