I'm trying to add a default category to any blog entry saved without
one.  I'm using the following code:


        def save(self):
                super(Entry, self).save()
                if self.categories.count() == 0:
                        try:
                                cat = self.blog.default_category
                                self.categories.add(cat)
                        except:
                                pass
                        super(Entry, self).save()


If I inspect self.categories after this, it shows the default
category, but the change never seems to be saved to the database.
What am I doing wrong?

Thanks!
--~--~---------~--~----~------------~-------~--~----~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to