Преглед изворни кода

Correct check for empty dirname (Fixes #2683)

Philipp Hagemeister пре 11 година
родитељ
комит
d26e981df4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      youtube_dl/YoutubeDL.py

+ 1 - 1
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))