mercurial/context.py
changeset 6818 6e93fbd847ef
parent 6817 cf319797d61c
child 6827 c978d6752dbb
--- a/mercurial/context.py	Tue Jul 22 13:00:22 2008 -0500
+++ b/mercurial/context.py	Tue Jul 22 13:02:36 2008 -0500
@@ -598,7 +598,7 @@
         return self._parents[0].ancestor(c2) # punt on two parents for now
 
     def walk(self, match):
-        for src, fn, st in self._repo.dirstate.walk(match, True, False):
+        for fn, st in self._repo.dirstate.walk(match, True, False):
             yield fn
 
 class workingfilectx(filectx):