Mercurial > public > mercurial-scm > python-hglib
comparison hglib/context.py @ 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 | 1b47146a4a2c |
children | a05cdc1579df |
comparison
equal
deleted
inserted
replaced
136:dc63978871ed | 137:7ba67c1f1f92 |
---|---|
1 from hglib.error import CommandError | 1 from hglib.error import CommandError |
2 import client, util, templates | 2 import client, util, templates |
3 | 3 |
4 _nullcset = ['-1', '000000000000000000000000000000000000000', '', '', | 4 _nullcset = ['-1', '0000000000000000000000000000000000000000', '', '', |
5 '', '', ''] | 5 '', '', ''] |
6 | 6 |
7 class changectx(object): | 7 class changectx(object): |
8 """A changecontext object makes access to data related to a particular | 8 """A changecontext object makes access to data related to a particular |
9 changeset convenient.""" | 9 changeset convenient.""" |