1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-20 00:49:11 +02:00

Fix 'rev' index error for Mercurial

Summary: I renamed this in D2437 for greater consistency with everything else, but missed this use of the old key.

Test Plan: idk lmk?

Reviewers: Makinde

Reviewed By: Makinde

CC: aran

Differential Revision: https://secure.phabricator.com/D2452
This commit is contained in:
epriestley 2012-05-10 11:43:21 -07:00
parent 53161a1b84
commit 9d5c5f6310

View file

@ -1751,7 +1751,7 @@ EOTEXT
$messages = $repository_api->getCommitMessageLog();
$local = $this->loadActiveLocalCommitInfo();
$hashes = ipull($local, null, 'rev');
$hashes = ipull($local, null, 'commit');
$usable = array();
foreach ($messages as $rev => $message) {