>    Paragraph(rack.nick, normalstyle, bulletText=None),

Yep, rack.nick is None here it would seem.  Like Karen said, don't
have nullable CharField if you can help it;  blank=True is good and
then and empty will be "".  I have a dirty hack for you that should
'work'.

Paragraph(  rack.nick if rack.nick else "", normalstyle,
bulletText=None )

but avoid using null, 
http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.Field.null
for a CharField if that's what led to this.

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to