summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-03 15:28:39 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-03 15:28:41 +0200
commitd26e981df46ace75bc2e9d2bbd9bd210388b5dd9 (patch)
tree0cf10b024c45cfce84af0f9df9d5e2d46e71cd8b
parente45d40b1710ef33b9d639dbda99a71a412859936 (diff)
downloadyoutube-dl-d26e981df46ace75bc2e9d2bbd9bd210388b5dd9.tar.gz
youtube-dl-d26e981df46ace75bc2e9d2bbd9bd210388b5dd9.tar.xz
youtube-dl-d26e981df46ace75bc2e9d2bbd9bd210388b5dd9.zip
Correct check for empty dirname (Fixes #2683)
-rw-r--r--youtube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
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))