Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-06 15:28:43 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-07-06 15:28:43 +0300
commit48539bb7f899433ed64f0557db20950a6cb54052 (patch)
tree4bd92c472e6b305890df8b5d61b097ea63998b89 /conanfile.py
parentc9587c3d219e5e148eaeceed9fe2225254dfb7a0 (diff)
Only convert path to string
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index 94be515e9b..6405c9f048 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -139,7 +139,7 @@ class CuraConan(ConanFile):
def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file):
pyinstaller_metadata = self._um_data(self.version)["pyinstaller"]
- datas = [(str(self._base_dir.joinpath("conan_install_info.json"), "."))]
+ datas = [(str(self._base_dir.joinpath("conan_install_info.json")), ".")]
for data in pyinstaller_metadata["datas"].values():
if "package" in data: # get the paths from conan package
if data["package"] == self.name: