Fix context iterator.
authorBryan O'Sullivan <bos@serpentine.com>
Fri, 02 Nov 2007 14:44:33 -0700
changeset 5485 8c0756f7b18b
parent 5484 07bdb5e5d08c
child 5486 48c22c719f8c
child 5504 8bc73135c453
Fix context iterator.
mercurial/context.py
--- a/mercurial/context.py	Fri Nov 02 20:09:21 2007 +0100
+++ b/mercurial/context.py	Fri Nov 02 14:44:33 2007 -0700
@@ -70,7 +70,7 @@
         a = self._manifest.keys()
         a.sort()
         for f in a:
-            return f
+            yield f
 
     def changeset(self): return self._changeset
     def manifest(self): return self._manifest