summaryrefslogtreecommitdiff
path: root/wrappers/python/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/setup.py')
-rwxr-xr-xwrappers/python/setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index f19be57..143b6a5 100755
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -106,7 +106,9 @@ class bdist_wheel(_bdist_wheel):
if os.path.isdir(p):
shutil.rmtree(p)
os.makedirs(p)
- shutil.copyfile(self.exports_lib_path + "/" + libpath, p+"/"+libpath.split("/")[-1])
+ shutil.copyfile(
+ self.exports_lib_path + "/" + libpath, p + "/" + libpath.split("/")[-1]
+ )
_bdist_wheel.run(self)
shutil.rmtree(p)