You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason for using .__unicode__() in (2)? (It gives me me UnicodeEncodeError on a string that includes unicode characters. Removing .__unicode__() seems to help.)
Cheers
The text was updated successfully, but these errors were encountered:
I removed .__unicode__ in my local version for the project I'm currently developing. It did not break anything for what I can observe. I can prepare a pull request later.
In
mongonaut_tags.py
there are two similar lines:(1)
return mark_safe("""<a href="{0}">{1}</a>""".format(value, value))
(2)
return mark_safe("""<a href="{0}">{1}</a>""".format(url, value.__unicode__()))
Is there a reason for using
.__unicode__()
in (2)? (It gives me meUnicodeEncodeError
on a string that includes unicode characters. Removing.__unicode__()
seems to help.)Cheers
The text was updated successfully, but these errors were encountered: