changeset 5485:8c0756f7b18b

Fix context iterator.
author Bryan O'Sullivan <bos@serpentine.com>
date Fri, 02 Nov 2007 14:44:33 -0700
parents 07bdb5e5d08c
children 48c22c719f8c 8bc73135c453
files mercurial/context.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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