José de Paula Eufrásio Júnior schrieb: > line 315, in format_compound_error > assert 0, "I didn't expect something like %s" % repr(v) > AssertionError: I didn't expect something like u'Os campos n\xe3o s\xe3o > iguais' > ========
Ah, seems to be a bug. It checks for plain string in the assertion and gets a unicode. Can you please test if the problem is gone (and everything else works) if you change the line 312 from elif isinstance(v, str): to: elif isinstance(v, basestring): Thank's -- Gregor --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

