--- a/server/mssteps.py Tue Jan 20 16:29:06 2009 +0100
+++ b/server/mssteps.py Tue Jan 20 16:31:15 2009 +0100
@@ -6,7 +6,7 @@
for now)
:organization: Logilab
-:copyright: 2003-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+:copyright: 2003-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
"""
__docformat__ = "restructuredtext en"
@@ -274,9 +274,9 @@
result &= frozenset(step.execute())
result = list(result)
if self.offset:
- result = result[offset:]
+ result = result[self.offset:]
if self.limit:
- result = result[:limit]
+ result = result[self.:limit]
return result