diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-03 15:28:39 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-03 15:28:41 +0200 | 
| commit | d26e981df46ace75bc2e9d2bbd9bd210388b5dd9 (patch) | |
| tree | 0cf10b024c45cfce84af0f9df9d5e2d46e71cd8b | |
| parent | e45d40b1710ef33b9d639dbda99a71a412859936 (diff) | |
Correct check for empty dirname (Fixes #2683)
| -rw-r--r-- | youtube_dl/YoutubeDL.py | 2 | 
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))  | 
