mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
Minor, fix an exception variable.
Auditors: DurhamGoode
This commit is contained in:
parent
6a70964a40
commit
84254f111a
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ final class ArcanistMercurialAPI extends ArcanistRepositoryAPI {
|
|||
hgsprintf('ancestor(%s,.)', $symbolic_commit));
|
||||
} catch (Exception $ex) {
|
||||
throw new ArcanistUsageException(
|
||||
"Commit '{$commit}' is not a valid Mercurial commit identifier.");
|
||||
"Commit '{$symbolic_commit}' is not a valid Mercurial commit ".
|
||||
"identifier.");
|
||||
}
|
||||
|
||||
$this->setBaseCommitExplanation("it is the greatest common ancestor of ".
|
||||
|
|
Loading…
Reference in a new issue