Commit c5659072 by Alex Gaynor

Add a verbose name, Django 1.2 seems to use this.

parent 3dbe8804
......@@ -23,8 +23,9 @@ class TaggableRel(ManyToManyRel):
class TaggableManager(object):
def __init__(self):
def __init__(self, verbose_name="Tags"):
self.rel = TaggableRel()
self.verbose_name = verbose_name
self.editable = True
self.unique = False
self.creates_table = False
......
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