While poking around dal.py last night came across the following:

@@ -3469,7 +3470,7 @@ class Rows(object):
         returns a set of rows of sorted elements (not filtered in place)
         """
         if not self.records:
-            return return Rows(self.db, [], self.colnames)
+            return Rows(self.db, [], self.colnames)
         records = []
         for i in range(0,len(self)):
             row = self[i]

Not sure if it's fixed in the trunk as I have limited net access atm,
but I made the change in my repositories so figured to send it out :)

Reply via email to