projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e45d40b
)
Correct check for empty dirname (Fixes #2683)
author
Philipp Hagemeister
<phihag@phihag.de>
Thu, 3 Apr 2014 13:28:39 +0000
(15:28 +0200)
committer
Philipp Hagemeister
<phihag@phihag.de>
Thu, 3 Apr 2014 13:28:41 +0000
(15:28 +0200)
youtube_dl/YoutubeDL.py
patch
|
blob
|
history
diff --git
a/youtube_dl/YoutubeDL.py
b/youtube_dl/YoutubeDL.py
index 430773edda28e5847ae7f702e40655c692c402a4..5794fdbe9f16897357892db883beef88e9f3a1e5 100644
(file)
--- 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))