google-code-export / django-syncr

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

picasaweb tags: can be null, so should be " tags = TagField(null=True) " #76

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. use syncr with picasaweb
2. try to sync photos/albums from picasaweb
3.  see null tags cause an exception

line 25 picasaweb/models.py
    tags = TagField()

should be
    tags = TagField(null=True)

Original issue reported on code.google.com by jud...@gmail.com on 14 Dec 2009 at 1:19