From 0669604a14994bccde04f1dc96b4cdd870c0dd58 Mon Sep 17 00:00:00 2001 From: Nate Weibley Date: Fri, 3 Jun 2016 10:07:49 -0400 Subject: [PATCH] Fix github json download failure argument string Bug noted in #3465 --- src/AutoPilotPlugins/APM/APMAirframeComponentController.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc b/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc index de5630cd1..4cb5ce43d 100644 --- a/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc +++ b/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc @@ -231,7 +231,7 @@ void APMAirframeComponentController::_githubJsonDownloadFinished(QString remoteF void APMAirframeComponentController::_githubJsonDownloadError(QString errorMsg) { - qgcApp()->showMessage(tr("Param file github json download failed: % 1").arg(errorMsg)); + qgcApp()->showMessage(tr("Param file github json download failed: %1").arg(errorMsg)); qgcApp()->restoreOverrideCursor(); } -- 2.22.0