Hi All,
I really don't understand what's going on. I've been developing/
learning in web2py for the past week, and suddenly when I decide to
deploy my code, I'm getting this odd error:
Traceback (most recent call last):
File "gluon/restricted.py", line 178, in restricted
File "C:/web2py/applications/icoexist/controllers/default.py", line
138, in <module>
File "gluon/globals.py", line 101, in <lambda>
File "C:/web2py/applications/icoexist/controllers/default.py", line
95, in view
TypeError: __call__() takes at most 2 arguments (3 given)
The offending line (95) is here, followed by the balance of the block.
I don't see a convenient way to paste the whole ticket here.
elif request.args[0]=='location':
rows = db(db.auth_user.location==request.args
[1],db.auth_user.registration_key=='').select()
locationRows = db().select(db.auth_user.location,
orderby=db.auth_user.location)
locations = []
uLocation = ''
for lRows in locationRows:
if uLocation != lRows.location:
locations.append(lRows.location)
uLocation = lRows.location
return dict(users=rows,locations=locations)
This code HAS been working. Any ideas what's going on?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---