From: Philipp Hagemeister Date: Thu, 3 Apr 2014 13:28:39 +0000 (+0200) Subject: Correct check for empty dirname (Fixes #2683) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d26e981df46ace75bc2e9d2bbd9bd210388b5dd9;p=youtube-dl Correct check for empty dirname (Fixes #2683) --- diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 430773edd..5794fdbe9 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -876,7 +876,7 @@ class YoutubeDL(object): try: dn = os.path.dirname(encodeFilename(filename)) - if dn != '' and not os.path.exists(dn): + if dn and not os.path.exists(dn): os.makedirs(dn) except (OSError, IOError) as err: self.report_error('unable to create directory ' + compat_str(err))