aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonproject.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2024-02-26 09:00:08 +0100
committerEike Ziller <eike.ziller@qt.io>2024-02-26 09:05:34 +0000
commit44f6bbf2607cdc8bdac204e3ee9d987fb75d9243 (patch)
treec8b03f88541ff734fed8cf3529f1d09f95894a76 /src/plugins/python/pythonproject.cpp
parent2d7af40007eae8088aabfd75bbe0dc4bfc47cf2e (diff)
Python: Wrap some file paths and kit name with quotes
Change-Id: If147eae864013d410239d69184cdb9a4bc4479eb Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/plugins/python/pythonproject.cpp')
-rw-r--r--src/plugins/python/pythonproject.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp
index 49216b2d6a3..129782773d3 100644
--- a/src/plugins/python/pythonproject.cpp
+++ b/src/plugins/python/pythonproject.cpp
@@ -33,8 +33,9 @@ Tasks PythonProject::projectIssues(const Kit *k) const
{
if (PythonKitAspect::python(k))
return {};
- return {BuildSystemTask{Task::Error,
- Tr::tr("No python interpreter set for kit %1").arg(k->displayName())}};
+ return {
+ BuildSystemTask{Task::Error,
+ Tr::tr("No python interpreter set for kit \"%1\"").arg(k->displayName())}};
}
PythonProjectNode::PythonProjectNode(const FilePath &path)