summaryrefslogtreecommitdiff
path: root/gentree.py
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-10-21 23:42:29 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2013-10-21 23:44:19 +0200
commitefdb6bbb9cd89d3174dbdecf02b79c0f294e3d10 (patch)
treea7f886138ab5d9557dd0383185216c5a2b91ae4b /gentree.py
parent515e82602216fc40a224f02f34d0a0f0c03c8309 (diff)
gentree.py: fix directory creating
The full path has to be provided not just the new directory to create. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'gentree.py')
-rwxr-xr-xgentree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gentree.py b/gentree.py
index daf90330..d101bdb4 100755
--- a/gentree.py
+++ b/gentree.py
@@ -423,7 +423,7 @@ def upload_release(args, rel_prep, logwrite=lambda x:None):
for path in rel_prep['paths_to_create']:
korg_path += '/' + path
if (not args.kup_test):
- logwrite(kup.mkdir(path))
+ logwrite(kup.mkdir(korg_path))
if (not args.kup_test):
logwrite(kup.put(bzip2_name, tar_name + '.asc', korg_path))
logwrite("\nFinished upload!\n")