I use python 2.5 I get the following error in the admin "string index out of range"
Why do I get this error? The model classes are in question are: 12 class Work(models.Model): 13 datum = models.DateTimeField() 14 omschrijving = models.CharField(maxlength=255) 15 def __str__(self): 16 return self.omschrijving 17 class Meta: 18 ordering = ['-datum'] 19 class Admin: 20 pass 21 22 class Works_upload(models.Model): 23 works_upload = models.ForeignKey(Work, edit_inline=models.TABULAR) 24 title = models.CharField(maxlength=100, core=True, blank=True) 25 upload = models.ImageField(upload_to="upload/work/", blank=True) 26 def __str__(self): 27 return self.title Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/django/core/handlers/base.py" in get_response 77. response = callback(request, *callback_args, **callback_kwargs) File "/usr/lib/python2.5/site-packages/django/contrib/admin/views/decorators.py" in _checklogin 55. return view_func(request, *args, **kwargs) File "/usr/lib/python2.5/site-packages/django/views/decorators/cache.py" in _wrapped_view_func 39. response = view_func(request, *args, **kwargs) File "/usr/lib/python2.5/site-packages/django/contrib/admin/views/main.py" in change_stage 329. new_object = manipulator.save(new_data) File "/usr/lib/python2.5/site-packages/django/db/models/manipulators.py" in save 165. if rel_new_data[related.opts.pk.name][0]: IndexError at /admin/works/work/2/ string index out of range --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---