##// END OF EJS Templates
context: call normal on the right object...
Siddharth Agarwal -
r21990:48e32c2c stable
parent child Browse files
Show More
@@ -1341,8 +1341,10 b' class workingctx(committablectx):'
1341 try:
1341 try:
1342 # updating the dirstate is optional
1342 # updating the dirstate is optional
1343 # so we don't wait on the lock
1343 # so we don't wait on the lock
1344 # wlock can invalidate the dirstate, so cache normal _after_
1345 # taking the lock
1346 wlock = self._repo.wlock(False)
1344 normal = self._repo.dirstate.normal
1347 normal = self._repo.dirstate.normal
1345 wlock = self._repo.wlock(False)
1346 try:
1348 try:
1347 for f in fixup:
1349 for f in fixup:
1348 normal(f)
1350 normal(f)
General Comments 0
You need to be logged in to leave comments. Login now