Make 'fetch' test for local directories before creating. Fixes issue #450

pull/603/head
Fred Alger 13 years ago
parent 57a34d914f
commit 51b460e8c6

@ -481,6 +481,7 @@ class Runner(object):
if remote_md5 != local_md5: if remote_md5 != local_md5:
# create the containing directories, if needed # create the containing directories, if needed
if not os.path.isdir(os.path.dirname(dest)):
os.makedirs(os.path.dirname(dest)) os.makedirs(os.path.dirname(dest))
# fetch the file and check for changes # fetch the file and check for changes

Loading…
Cancel
Save