Submitter | Sean Farley |
---|---|
Date | Aug. 7, 2013, 6:13 p.m. |
Message ID | <18155de59edb65e797b5.1375899187@laptop.local> |
Download | mbox | patch |
Permalink | /patch/2024/ |
State | Superseded |
Commit | 6041ebaf8151625f51bcad014fe5fadc106960dc |
Delegated to: | Augie Fackler |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -41,11 +41,11 @@ def rev(self): return self._rev def node(self): return self._node def hex(self): - return hex(self._node) + return hex(self.node()) class changectx(context): """A changecontext object makes access to data related to a particular changeset convenient. It represents a read-only context already presnt in the repo."""