Re: Textile causing UnicodeDecodeError

2007-08-05 Thread Martin Gilday
Thanks that fixes it. On Aug 5, 6:12 pm, Lucky B <[EMAIL PROTECTED]> wrote: > from > here:http://64.233.169.104/search?q=cache:bswtnEOJ33QJ:douglasjarquin.com/... > > try textile.textile(str(self.source)) > > On Aug 5, 12:34 pm, Martin Gilday <[EMAIL PROTECTED]> wrote: > > > I have added textile

Re: Textile causing UnicodeDecodeError

2007-08-05 Thread Lucky B
from here: http://64.233.169.104/search?q=cache:bswtnEOJ33QJ:douglasjarquin.com/blog/2007/07/13/unicode-django-and-textile/+textile+unicode&hl=en&ct=clnk&cd=3&gl=us&client=firefox-a try textile.textile(str(self.source)) On Aug 5, 12:34 pm, Martin Gilday <[EMAIL PROTECTED]> wrote: > I have added

Textile causing UnicodeDecodeError

2007-08-05 Thread Martin Gilday
I have added textile.py to my project dir and can successfully import it in the shell. I have extended one of my models with a save method which copies the content from one field, textiles it, then saves it another column. def save(self): import textile self.body = textile.textile(self.s