On Wed, Feb 10, 2010 at 7:45 AM, oiad <vitor.tor...@gmail.com> wrote:

> Hi. If I have a couple of models like these:
>
> class Poll(models.Model):
>    question = models.CharField(max_length=200, unique = True)
>    pub_date = models.DateTimeField('date published')
>
> class Choice(models.Model):
>    poll = models.ForeignKey(Poll)
>    choice = models.CharField(max_length=200)
>    votes = models.IntegerField()
>
> and in admin.py I put "save_as=True" and I try to save a poll as a new
> one, but I forget to change the question, since I want that to be
> unique, I get an error as it supposed to be, but if I change the
> question and try to save the poll I get this error:
> invalid literal for int() with base 10: ''


This looks like a bug somewhere along the line of processing that sequence
(save-as that fails due to a validation error for an object with at least
one inline, correct the error, try to save again), though I'm not sure
where.  I don't recall this being reported before so if you could open a
ticket for it that would be good.

Karen

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to