I think that's a known issue with SQLObject, see for instance:
http://maxischenko.in.ua/blog/entries/89/sqlobject-unicode-and-ascii-error/
I'd suggest use str instead of unicode:
File "C:\Documents and
Settings\bruce\TG\myproject\myproject\controllers.py", line 26, in edit
page = Page.byPagename(pagename)
becomes
page = Page.byPagename(pagename.encode('utf8'))
or
from turbogears.util import to_utf8
page = Page.byPagename(to_utf8(pagename))
--Max.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" 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/turbogears
-~----------~----~----~----~------~----~------~--~---