1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

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
This commit is contained in:
Joshua Spence 2015-02-11 06:52:44 +11:00
parent 767397ee14
commit 84b0c8e6db

View file

@ -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));
}