aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pyside.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/python/pyside.cpp')
-rw-r--r--src/plugins/python/pyside.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pyside.cpp b/src/plugins/python/pyside.cpp
index 79cb6949ee2..8e74e71b1f6 100644
--- a/src/plugins/python/pyside.cpp
+++ b/src/plugins/python/pyside.cpp
@@ -211,7 +211,7 @@ void PySideInstaller::handlePySideMissing(const FilePath &python,
if (!document || !document->infoBar()->canInfoBeAdded(installPySideInfoBarId))
return;
const QString message = Tr::tr("%1 installation missing for %2 (%3)")
- .arg(pySide, pythonName(python), python.toUserOutput());
+ .arg(pySide, pythonVersion(python), python.toUserOutput());
InfoBarEntry info(installPySideInfoBarId, message, InfoBarEntry::GlobalSuppression::Enabled);
auto installCallback = [this, python, pySide] { installPySide(python, pySide, true); };
const QString installTooltip = Tr::tr("Install %1 for %2 using pip package installer.")