# HG changeset patch # User Yuya Nishihara # Date 1434978310 -32400 # Node ID 04d26a3c96fde55fec1a6c290412075b664281d6 # Parent 1a5211f2f87f01be2d88f2ff69385d82c7467cf3 workingctx: use node.wdirid constant diff -r 1a5211f2f87f -r 04d26a3c96fd mercurial/context.py --- a/mercurial/context.py Mon Jun 22 22:01:33 2015 +0900 +++ b/mercurial/context.py Mon Jun 22 22:05:10 2015 +0900 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -from node import nullid, nullrev, short, hex, bin +from node import nullid, nullrev, wdirid, short, hex, bin from i18n import _ import mdiff, error, util, scmutil, subrepo, patch, encoding, phases import match as matchmod @@ -1339,7 +1339,7 @@ return self._repo.dirstate[key] not in "?r" def hex(self): - return "ff" * 20 + return hex(wdirid) @propertycache def _parents(self):