Submitter | Sean Farley |
---|---|
Date | May 6, 2014, 11:33 p.m. |
Message ID | <eecae40cba0ea00b3cd5.1399419200@laptop.local> |
Download | mbox | patch |
Permalink | /patch/4649/ |
State | Accepted |
Commit | 20a30cd41d212fcb9eee0941d34b1987fdd5747c |
Headers | show |
Comments
Patch
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1569,14 +1569,15 @@ class localrepository(object): clean += fixup try: # updating the dirstate is optional # so we don't wait on the lock + normal = self._repo.dirstate.normal wlock = self.wlock(False) try: for f in fixup: - self.dirstate.normal(f) + normal(f) finally: wlock.release() except error.LockError: pass