dirstate: fix typo
authorAlexis S. L. Carvalho <alexis@cecm.usp.br>
Thu, 21 Jun 2007 00:34:14 -0300
changeset 4656 4eeb91870d3b
parent 4655 120626e06409
child 4657 27a386b96557
dirstate: fix typo
mercurial/dirstate.py
--- a/mercurial/dirstate.py	Thu Jun 21 00:34:14 2007 -0300
+++ b/mercurial/dirstate.py	Thu Jun 21 00:34:14 2007 -0300
@@ -159,7 +159,7 @@
             pos = newpos
 
     def invalidate(self):
-        for a in "_map _copymap _branch pl _dirs _ignore".split():
+        for a in "_map _copymap _branch _pl _dirs _ignore".split():
             if hasattr(self, a):
                 self.__delattr__(a)