1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 00:02:40 +01:00

Minor tidying of ArcanistRevertWorkflow

Summary: Self-explanatory.

Test Plan: Eyeball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11557
This commit is contained in:
Joshua Spence 2015-02-01 21:56:28 +11:00
parent 589ee20a76
commit 8208cd3231

View file

@ -29,9 +29,13 @@ EOTEXT
);
}
protected function getSupportedRevisionControlSystems() {
return array('git', 'hg');
}
public function run() {
$console = PhutilConsole::getConsole();
$console->writeOut("Please use arc backout instead.\n");
echo pht('Please use `%s` instead.', 'arc backout')."\n";
return 1;
}
}