From 84b0c8e6db9e459d35e941f6f47d13a4d95cf150 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Wed, 11 Feb 2015 06:52:44 +1100 Subject: [PATCH] Fix a `pht` method call Summary: Ref T7046. I missed this in D11680. Test Plan: `arc lint` Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7046 Differential Revision: https://secure.phabricator.com/D11731 --- .../interpreter/PhabricatorRemarkupFigletBlockInterpreter.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php b/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php index 517efe9d0f..2314b998f3 100644 --- a/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php +++ b/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php @@ -24,7 +24,9 @@ final class PhabricatorRemarkupFigletBlockInterpreter if ($err) { return $this->markupError( pht( - 'Execution of `figlet` failed:', $stderr)); + 'Execution of `%s` failed: %s', + 'figlet', + $stderr)); }