commit: 3af1e1728496f0cccd18946d03be78c5910914be
parent acd3d842987ee4c407093aaa4dedf4f301895adc
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date: Thu, 24 Jul 2008 10:07:46 +0200
Fix directory creation not working with absolute paths
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/youtube-dl b/youtube-dl
@@ -94,6 +94,7 @@ class FileDownloader(object):
"""Create directory components in filename. Similar to Unix "mkdir -p"."""
components = filename.split(os.sep)
aggregate = [os.sep.join(components[0:x]) for x in xrange(1, len(components))]
+ aggregate = ['%s%s' % (x, os.sep) for x in aggregate] # Finish names with separator
for dir in aggregate:
if not os.path.exists(dir):
os.mkdir(dir)