[YoutubeDL] improve error message for file:/// URLs
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Thu, 14 Jan 2016 13:07:54 +0000 (14:07 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Thu, 14 Jan 2016 13:07:54 +0000 (14:07 +0100)
youtube_dl/YoutubeDL.py

index ccad5f2eaa1f52be404f6c88c45009b612997744..4915fbd45f404ec52c9b9bc96e573251083be8a5 100755 (executable)
@@ -1994,7 +1994,7 @@ class YoutubeDL(object):
         file_handler = compat_urllib_request.FileHandler()
 
         def file_open(*args, **kwargs):
-            raise compat_urllib_error.URLError('file protocol is disabled')
+            raise compat_urllib_error.URLError('file:/// protocol is explicitly disabled in youtube-dl for security reasons')
         file_handler.file_open = file_open
 
         opener = compat_urllib_request.build_opener(