diff options
Diffstat (limited to 'src/plugins/python/pythonsettings.cpp')
-rw-r--r-- | src/plugins/python/pythonsettings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/python/pythonsettings.cpp b/src/plugins/python/pythonsettings.cpp index 9700630bf6..9e665ee1e8 100644 --- a/src/plugins/python/pythonsettings.cpp +++ b/src/plugins/python/pythonsettings.cpp @@ -281,7 +281,8 @@ Interpreter::Interpreter(const FilePath &python, const QString &defaultName, boo SynchronousProcess pythonProcess; pythonProcess.setProcessChannelMode(QProcess::MergedChannels); pythonProcess.setTimeoutS(1); - pythonProcess.runBlocking({python, {"--version"}}); + pythonProcess.setCommand({python, {"--version"}}); + pythonProcess.runBlocking(); if (pythonProcess.result() == QtcProcess::Finished) name = pythonProcess.stdOut().trimmed(); if (name.isEmpty()) |