fix single post deleting

This commit is contained in:
slav0nic 2011-07-05 16:37:00 +03:00
parent e7c8e57a53
commit e3dd5370c5

View file

@ -137,8 +137,13 @@ class Topic(models.Model):
return self.name
def delete(self, *args, **kwargs):
last_post = self.posts.latest()
last_post.last_forum_post.clear()
try:
last_post = self.posts.latest()
last_post.last_forum_post.clear()
except Post.DoesNotExist:
pass
else:
last_post.last_forum_post.clear()
forum = self.forum
super(Topic, self).delete(*args, **kwargs)
try: