mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-11 15:21:03 +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));
|
hgsprintf('ancestor(%s,.)', $symbolic_commit));
|
||||||
} catch (Exception $ex) {
|
} catch (Exception $ex) {
|
||||||
throw new ArcanistUsageException(
|
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 ".
|
$this->setBaseCommitExplanation("it is the greatest common ancestor of ".
|
||||||
|
|
Loading…
Reference in a new issue