Hi the traceback is pretty clear, these are 2 different errors and the full
traceback should point you to where these happened, unfortunately just with
a fragment we cant see where the error was originated.
The ascii error should go away by declaring "# coding: utf-8" at the
begining of the py file which holds the non ascii characters.
or more drastically somewhere soon in web2py's dispatch
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
but this is discouraged see
https://stackoverflow.com/questions/3828723/why-should-we-not-use-sys-setdefaultencodingutf-8-in-a-py-script
and for the second one
a None value is being used as it were a string somwhere in your code, the
full traceback or debugging the app should show tell you where this
happened.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.