in the function
def select(self,query,fields,attributes):
(items, tablename, fields) =
self.select_raw(query,fields,attributes)
# self.db['_lastsql'] = self._select(query,fields,attributes)
rows = [[(t=='id' and item.key().id_or_name()) or \
(t=='nativeRef' and item) or getattr(item, t) \
for t in fields] for item in items]
colnames = ['%s.%s' % (tablename, t) for t in fields]
processor = attributes.get('processor',self.parse)
return processor(rows,fields,colnames,False)
error:
File "/usr/home/jose/web2py/gluon/dal.py", line 4130
rows = [[(t=='id' and item.key().id_or_name()) or \
^
there is more space at the end of line
Jose