summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/lib/Server/Reports/utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/Server/Reports/utils.py b/src/lib/Server/Reports/utils.py
index 6010f366b..e0b6ead59 100755
--- a/src/lib/Server/Reports/utils.py
+++ b/src/lib/Server/Reports/utils.py
@@ -20,6 +20,10 @@ class BatchFetch(object):
def __iter__(self):
return self
+ def next(self):
+ """Provide compatibility with python < 3.0"""
+ return self.__next__()
+
def __next__(self):
"""Return the next object from our array and fetch from the
database when needed"""