gluon/sql.py", line 2716, in __getslice__
    d = dict(field=str(self), pos=pos0+1, length=length)
TypeError: cannot concatenate 'str' and 'int' objects

Fix:
d = dict(field=str(self), pos=str(int(pos0)+1), length=length)

But this is ugly maybe a refactor of this methode is nessarry.


Martin
-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web...@googlegroups.com.
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.


Reply via email to