summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-11-27 00:14:12 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-11-27 00:14:12 +0100
commit240089e5df640a12b1d300da05932c2f74ff8c69 (patch)
treed0dac45f29d600679f167b8dab7891315f0e2af7
parent1c469a9480e9d8bea45950898eb46e07b0c58290 (diff)
downloadyoutube-dl-240089e5df640a12b1d300da05932c2f74ff8c69.tar.gz
youtube-dl-240089e5df640a12b1d300da05932c2f74ff8c69.tar.xz
youtube-dl-240089e5df640a12b1d300da05932c2f74ff8c69.zip
remove accidental remnants
-rw-r--r--youtube_dl/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 55f2fe02c..1f60d34ae 100644
--- 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 '\\/|*<>':