From e6de3eeb776ded36fd76aa8b27083e41b9866732 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 28 Mar 2022 13:34:53 +0200 Subject: [PATCH] Python: Fix error message Change-Id: I89531b1af594e11a52be18c4ca3c0112e076d660 Reviewed-by: David Schulz --- src/plugins/python/pipsupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/python/pipsupport.cpp b/src/plugins/python/pipsupport.cpp index 6968fef1f97..67efa951f02 100644 --- a/src/plugins/python/pipsupport.cpp +++ b/src/plugins/python/pipsupport.cpp @@ -108,7 +108,7 @@ void PipInstallTask::installFinished() if (!success) { Core::MessageManager::writeFlashing( tr("Installing the %1 failed with exit code %2") - .arg(m_package.displayName, m_process.exitCode())); + .arg(m_package.displayName).arg(m_process.exitCode())); } emit finished(success); }