Commit bfeafd17 by Alex Gaynor

Merge remote branch 'origin/master'

parents 4331dd02 15b19ea9
......@@ -5,7 +5,7 @@ from taggit.utils import parse_tags
class TagWidget(forms.TextInput):
def render(self, name, value, attrs=None):
if not isinstance(value, basestring):
if value is not None and not isinstance(value, basestring):
value = ", ".join(o.tag.name for o in value.select_related("tag"))
return super(TagWidget, self).render(name, value, attrs)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment