forked from qt-creator/qt-creator
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user