correct handling of modification after creation

git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3040 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2008-12-06 11:45:21 +00:00
parent 67f9b7af98
commit 2e3f0b8e9c

View file

@ -144,7 +144,7 @@ class RecentChanges(TrackingStats):
changed[track.taskId] = track
result.append(track)
continue
if len(resul) > length:
if len(result) > length:
break
return dict(data=[TrackDetails(self, tr) for tr in result],
macro=self.macros['recent_changes'])