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

Make arc diff not crash on hg bookmarks

This commit is contained in:
Jamie Wong 2012-05-16 13:24:30 -04:00
parent 032b9b30b0
commit b8fb074dcf

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}'!");
}