You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on this blog post
http://reinout.vanrees.org/weblog/2012/04/13/django-filefield-limitation.html,
you can fix this issue by passing max_length argument to PicasaField.
Example:
class Image(models.Model):
photo = PicasaField(upload_to='/foo', max_length=300)
Original comment by davemccloskey on 4 Jan 2013 at 5:45
Original issue reported on code.google.com by
davemccloskey
on 4 Jan 2013 at 5:39The text was updated successfully, but these errors were encountered: