mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Fix missing comma in sprintf() in ArcanistWorkflow.
Summary: Refs D12607. Fixes T8195. Replace period in the sprintf() arguments with a comma. Test Plan: Ran `arc diff` in the patch applied, did not get the sprintf() error Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Maniphest Tasks: T8195 Differential Revision: https://secure.phabricator.com/D12837
This commit is contained in:
parent
f00d4219dd
commit
383633e63f
1 changed files with 1 additions and 1 deletions
|
@ -1019,7 +1019,7 @@ abstract class ArcanistWorkflow extends Phobject {
|
|||
$api->amendCommit($commit['message']);
|
||||
} else if ($api->supportsLocalCommits()) {
|
||||
$template = sprintf(
|
||||
"\n\n# %s\n#\n# %s\n#\n".
|
||||
"\n\n# %s\n#\n# %s\n#\n",
|
||||
pht('Enter a commit message.'),
|
||||
pht('Changes:'));
|
||||
|
||||
|
|
Loading…
Reference in a new issue