changeset 8647:cb74433f9b41

localrepo: move comment
author Adrian Buehlmann <adrian@cadifra.com>
date Thu, 28 May 2009 08:29:40 +0200
parents 60f9e574b6eb
children ca443bac7ed4
files mercurial/localrepo.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/localrepo.py	Wed May 27 14:16:13 2009 +0200
+++ b/mercurial/localrepo.py	Thu May 28 08:29:40 2009 +0200
@@ -972,10 +972,10 @@
                 # update dirstate for files that are actually clean
                 if fixup:
                     try:
+                        # updating the dirstate is optional
+                        # so we don't wait on the lock
                         wlock = self.wlock(False)
                         try:
-                            # updating the dirstate is optional
-                            # so we don't wait on the lock
                             for f in fixup:
                                 self.dirstate.normal(f)
                         finally: