[web2py] Re: compute=lambda function

2010-09-25 Thread annet
Thanks for your reply. I tried: > > def mycompute(r): >     print 'In mycompute(r), r = ' + r >     return str(r['selector']) + ' ' + str(r['property']) > > db.define_table('css_selectorproperty', >     Field('selector',length=48,default='',notnull=True), >     Field('property',length=36,default='

[web2py] Re: compute=lambda function

2010-09-25 Thread cjrh
On Sep 25, 10:23 am, annet wrote: > compute=lambda r: str(r['selector']) + ' ' + str(r['property']) > > is syntactically incorrect. What is the correct syntax? The syntax of that command, on its own, is correct. Perhaps you can try dumping the contents of the argument to see whether it contains