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
path: root/cura
diff options
context:
space:
mode:
authorJelle Spijker <spijker.jelle@gmail.com>2022-07-15 18:42:26 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-07-15 18:42:26 +0300
commite62e1e740141febc030810eef7ed3f1055f6564c (patch)
tree58571b9e121976f6f86a442d97d46b1e03be2b6f /cura
parent1e4fe93d64dda0acfd408246bbf8128490fe4f41 (diff)
Move one directory upCURA-9365_add_conan_info_to_log
Contributes to CURA-9365
Diffstat (limited to 'cura')
-rw-r--r--cura/ApplicationMetadata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py
index 007b4e2813..60d9201d8e 100644
--- a/cura/ApplicationMetadata.py
+++ b/cura/ApplicationMetadata.py
@@ -64,7 +64,7 @@ except ImportError:
DEPENDENCY_INFO = {}
try:
from pathlib import Path
- conan_install_info = Path(__file__).parent.joinpath("conan_install_info.json")
+ conan_install_info = Path(__file__).parent.parent.joinpath("conan_install_info.json")
if conan_install_info.exists():
import json
with open(conan_install_info, "r") as f: