youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 240089e5df640a12b1d300da05932c2f74ff8c69
parent 1c469a9480e9d8bea45950898eb46e07b0c58290
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue, 27 Nov 2012 00:14:12 +0100

remove accidental remnants

Diffstat:
Myoutube_dl/utils.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -203,7 +203,7 @@ def sanitize_filename(s, restricted=False): if char == '?' or ord(char) < 32 or ord(char) == 127: return '' elif char == '"': - return '' if restricted else 'FOO\'' + return '' if restricted else '\'' elif char == ':': return '_-' if restricted else ' -' elif char in '\\/|*<>':