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-28 22:20:17 +0100
commit224d33c52f4edf6d13cb5ca37605a6e041598c3a (patch)
tree96b5e4b58af391618b629f925dbba81c5d2dc18b /gentree.py
parentb74016dd555e6ec73b75049eaf2d7f77e7d2e0a6 (diff)
gentree.py: fix directory creating
Upstream commit: efdb6bbb9cd89d3174dbdecf02b79c0f294e3d10 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")