From 62eb36e7ec9fe2c64576c76691bc8b948e95c755 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Fri, 18 Mar 2022 07:09:59 +0100 Subject: [PATCH] Python: Use relative file path as run config name Change-Id: Ifac28b9e4b066ea62b43a7da04b71e2c4317a898 Reviewed-by: Reviewed-by: Christian Stenger --- src/plugins/python/pythonproject.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp index c373b08ac11..69f3b52a0af 100644 --- a/src/plugins/python/pythonproject.cpp +++ b/src/plugins/python/pythonproject.cpp @@ -257,6 +257,7 @@ void PythonBuildSystem::triggerParsing() newRoot->addNestedNode(std::make_unique(filePath, displayName, fileType)); if (fileType == FileType::Source) { BuildTargetInfo bti; + bti.displayName = displayName; bti.buildKey = f; bti.targetFilePath = filePath; bti.projectFilePath = projectFilePath();