> in my model i'm using:
>
> from django.db import models, datetime, MEDIA_ROOT
>
> class RrsForm(models.Model):
> #....
>
> upload_doc = models.FileField(upload_to 'documents')
>
> I get this error when I run (before running syncdb):
>
> python manage.py sql rrs
>
> I get:
>
> File "/home/chrissmith/Dcode/rrws/rrs/models.py", line 36
> upload_doc = models.FileField(upload_to 'documents')
> ^
> SyntaxError: invalid syntax
>
> any idea's what's up?
>
As the error message says, it is invalid syntax, you forgot the equals
sign (upload_to='documents').
Martin
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
No comments:
Post a Comment