My favorites
▼
|
Sign in
django-forum
Simple Django Forum Component
Project Home
Wiki
Issues
Source
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
23
attachment: models_typo.diff
(473 bytes)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: models.py
===================================================================
--- models.py (revision 20)
+++ models.py (working copy)
@@ -221,7 +221,7 @@
def delete(self):
try:
- latest_post = Post.objects.execlude(pk=self.id).latest('time')
+ latest_post = Post.objects.exclude(pk=self.id).latest('time')
latest_post_time = latest_post.time
except Post.DoesNotExist:
latest_post_time = None
Powered by
Google Project Hosting