diff options
Diffstat (limited to 'src/plugins/python/pythonutils.cpp')
-rw-r--r-- | src/plugins/python/pythonutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonutils.cpp b/src/plugins/python/pythonutils.cpp index 17304271a8..89e897b350 100644 --- a/src/plugins/python/pythonutils.cpp +++ b/src/plugins/python/pythonutils.cpp @@ -111,7 +111,7 @@ void openPythonRepl(QObject *parent, const FilePath &file, ReplType type) const FilePath pythonCommand = detectPython(file); process->setCommand({pythonCommand, args}); process->setWorkingDirectory(workingDir(file)); - const QString commandLine = process->command().toUserOutput(); + const QString commandLine = process->commandLine().toUserOutput(); QObject::connect(process, &ConsoleProcess::errorOccurred, process, |