##// END OF EJS Templates
context: override workingctx.hex() to avoid a crash...
Matt Harbison -
r25590:183965a0 default
parent child Browse files
Show More
@@ -1334,6 +1334,9 b' class workingctx(committablectx):'
1334 def __contains__(self, key):
1334 def __contains__(self, key):
1335 return self._repo.dirstate[key] not in "?r"
1335 return self._repo.dirstate[key] not in "?r"
1336
1336
1337 def hex(self):
1338 return "ff" * 20
1339
1337 @propertycache
1340 @propertycache
1338 def _parents(self):
1341 def _parents(self):
1339 p = self._repo.dirstate.parents()
1342 p = self._repo.dirstate.parents()
General Comments 0
You need to be logged in to leave comments. Login now