On 12/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I just installed SO 0.7.2 and ran it against my app using the svn trunk > version of TG. > > I had to modify the mysqlconnection.py file to include the unicode test > at line 77 again. After that, my app seems to be happy again... > again? did you reported this to SO mailing list?
> - myquery = unicode(query, self.encoding) > > + if type(query) != unicode: > + myquery = unicode(query, self.encoding ) > + else: > + myquery = query > > > Nicky > > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

