1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2025-02-16 16:58:38 +01:00

Merge pull request #27 from phleet/hg-bookmark

Make arc diff not crash on hg bookmarks
This commit is contained in:
Evan Priestley 2012-05-17 09:52:56 -07:00
commit 75ee76b243

View file

@ -176,6 +176,9 @@ final class ArcanistMercurialParser {
case 'tag':
$commit['tag'] = $value;
break;
case 'bookmark':
$commit['bookmark'] = $value;
break;
default:
throw new Exception("Unknown Mercurial log field '{$name}'!");
}