Mercurial > python-hglib
changeset 137:7ba67c1f1f92
context: fix missing digit in null hash
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sat, 01 Nov 2014 14:26:18 -0500 |
parents | dc63978871ed |
children | a05cdc1579df |
files | hglib/context.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hglib/context.py Thu Oct 23 10:50:09 2014 +0200 +++ b/hglib/context.py Sat Nov 01 14:26:18 2014 -0500 @@ -1,7 +1,7 @@ from hglib.error import CommandError import client, util, templates -_nullcset = ['-1', '000000000000000000000000000000000000000', '', '', +_nullcset = ['-1', '0000000000000000000000000000000000000000', '', '', '', '', ''] class changectx(object):