commit: d26e981df46ace75bc2e9d2bbd9bd210388b5dd9
parent e45d40b1710ef33b9d639dbda99a71a412859936
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Thu, 3 Apr 2014 15:28:39 +0200
Correct check for empty dirname (Fixes #2683)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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))