Skip to content

Commit 6da5dac

Browse files
committed
Fixes for exported data
Signed-off-by: Matthew Ballance <matt.ballance@gmail.com>
1 parent 13b3c6d commit 6da5dac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ivpm/setup/install_lib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def install(self):
8282
# if os.path.isdir(os.path.join(install_root, p, dst)):
8383
# print("rmtree: %s" % os.path.join(install_root, p, dst))
8484
# shutil.rmtree(os.path.join(install_root, p, dst))
85-
dst_dir = os.path.join(install_root, p, dst, os.path.basename(src)),
85+
dst_dir = os.path.join(install_root, p, dst, os.path.basename(src))
8686
if not os.path.isdir(dst_dir):
8787
os.makedirs(dst_dir, exist_ok=True)
8888

0 commit comments

Comments
 (0)