Python: Wrap some file paths and kit name with quotes

Change-Id: If147eae864013d410239d69184cdb9a4bc4479eb
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Eike Ziller
2024-02-26 09:00:08 +01:00
parent 2d7af40007
commit 44f6bbf260
2 changed files with 12 additions and 8 deletions

View File

@@ -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)