Skip to content

Commit

Permalink
Found a missing comma, fixed #6
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/brian/Backups/S3/backups/Wednesday/brian/svn/djog/trunk@29 95ab7de8-677b-4562-a266-b8acc9dd993c
  • Loading branch information
alex committed Oct 8, 2007
1 parent ce4b5e7 commit 7ef8ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djog/models.py
Expand Up @@ -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):
Expand Down

0 comments on commit 7ef8ba4

Please sign in to comment.