From 7ef8ba40e88c431b6a2762f9dae195c2ee0d5f6e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 8 Oct 2007 17:27:18 +0000 Subject: [PATCH] Found a missing comma, fixed #6 git-svn-id: file:///Users/brian/Backups/S3/backups/Wednesday/brian/svn/djog/trunk@29 95ab7de8-677b-4562-a266-b8acc9dd993c --- djog/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djog/models.py b/djog/models.py index 5522154..5441a36 100644 --- a/djog/models.py +++ b/djog/models.py @@ -32,7 +32,7 @@ def get_absolute_url(self): return urlresolvers.reverse('djog_entry', kwargs={'year': self.pub_date.strftime("%Y"), 'month': self.pub_date.strftime("%b").lower(), - 'day': self.pub_date.strftime("%d") + 'day': self.pub_date.strftime("%d"), 'slug': self.slug}) def get_rss_url(self):