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

Fix arc which output

Summary: Fixes T8231. This was derped in some recent refactoring.

Test Plan: Ran `arc which` and saw expected output.

Reviewers: avivey, epriestley, #blessed_reviewers

Reviewed By: avivey, epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T8231

Differential Revision: https://secure.phabricator.com/D12890
This commit is contained in:
Joshua Spence 2015-05-18 09:40:43 +10:00
parent 8c6e1284cc
commit 0c9a037719

View file

@ -160,13 +160,14 @@ EOTEXT
}
echo phutil_console_wrap(
"%s\n\n%s\n\n $ %s\n\n%s\n\n",
$will_be_sent,
pht(
'You can see the exact changes that will be sent by running '.
'this command:'),
$command,
pht('These commits will be included in the diff:'));
phutil_console_format(
"%s\n\n%s\n\n $ %s\n\n%s\n\n",
$will_be_sent,
pht(
'You can see the exact changes that will be sent by running '.
'this command:'),
$command,
pht('These commits will be included in the diff:')));
echo $commits."\n\n\n";
}