Explorar o código

Forbid forward slash in win32 file names (fixes issue #147)

Ricardo Garcia %!s(int64=15) %!d(string=hai) anos
pai
achega
ca6a11fa59
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      youtube-dl

+ 1 - 1
youtube-dl

@@ -99,7 +99,7 @@ def sanitize_open(filename, open_mode):
 		return (stream, filename)
 	except (IOError, OSError), err:
 		# In case of error, try to remove win32 forbidden chars
-		filename = re.sub(ur'[<>:"\|\?\*]', u'#', filename)
+		filename = re.sub(ur'[/<>:"\|\?\*]', u'#', filename)
 
 		# An exception here should be caught in the caller
 		stream = open(filename, open_mode)