есть модель
# -*- coding: utf-8 -*-
from django.db import models
from django.core.urlresolvers import reverse
class Parse(models.Model):
title = models.CharField(_('Title'), max_length=250)
...
def __unicode__(self):
return self.title
Exception Type: DjangoUnicodeDecodeError
Exception Value: ('ascii', 'Krep\xc5\xa1inis', 4, 5, 'ordinal not in range(128)')