logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 8e5477d036319adee98a6a7f95fc0ba09bb7b28c
parent 1e8e5d5238b4863aa2005d1cd5981343d96bdbf3
Author: Aaron Zeng <zeng.aaron.l@gmail.com>
Date:   Wed, 13 Jan 2021 23:46:07 -0500

[YoutubeDL] Ignore failure to create existing directory (#27811)


Diffstat:

Myoutube_dl/YoutubeDL.py2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py @@ -1779,6 +1779,8 @@ class YoutubeDL(object): os.makedirs(dn) return True except (OSError, IOError) as err: + if isinstance(err, OSError) and err.errno == errno.EEXIST: + return True self.report_error('unable to create directory ' + error_to_compat_str(err)) return False