acangiani / django-tagging

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

python 2.3 syntax incompatibility in fields.py #51

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In line 104 of fields.py

return ' '.join(t.name for t in tagset) 

works fine in python 2.4, but not 2.3
unless there are other reasons django-tagging is incompatible with python
2.3, this is easily fixed by changing that line to:

return ' '.join([t.name for t in tagset])

Original issue reported on code.google.com by thn...@gmail.com on 30 Jun 2007 at 10:16

GoogleCodeExporter commented 9 years ago
Fixed in revision 84

Original comment by jonathan.buchanan on 30 Jun 2007 at 10:49