This seems not to be a problem with your plugin but with Trac in the
line
value = unicode(value.value, 'utf-8')
in trac/web/api.py in the Trac source (are you using Trac 0.12? Which
version exactly?).
Some illegal unicode value occured here. I am not a Trac developer and
do not know the circumstances, but before developer explain this error
in detail, a quick and dirty help may be to
catch this error:
try:
value = unicode(value.value, 'utf-8')
except:
# issue some warning here if you want or:
pass
Of course, you have to change the Trac source code to this purpose but
this should be no problem if you have the permissions.
HTH, Reinhard
--
You received this message because you are subscribed to the Google Groups "Trac
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/trac-users?hl=en.