flebel / django-tagging

Automatically exported from code.google.com/p/django-tagging
Other
0 stars 0 forks source link

Wiki UsefulTips page code typo #48

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The last line of the model code currently reads;

tags = property(_get_tags, _set_tags)

which results in an undefined module error.

It should read;

tags = property('_get_tags', '_set_tags')

which now works perfectly.

Original issue reported on code.google.com by douglasj...@gmail.com on 19 Jun 2007 at 4:26

GoogleCodeExporter commented 9 years ago

Original comment by jonathan.buchanan on 12 Jan 2008 at 1:29