Skip to content

Commit

Permalink
fixing date
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Newman committed Apr 30, 2009
1 parent 61085b7 commit 7268e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faq/models.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Topic(models.Model):


name = models.CharField(max_length=150) name = models.CharField(max_length=150)
slug = models.SlugField(max_length=150) slug = models.SlugField(max_length=150)
created_on = models.DateTimeField(default=datetime.now) created_on = models.DateTimeField(default=datetime.now, default=datetime.now, editable=False)


class Meta: class Meta:
ordering = ['name'] ordering = ['name']
Expand Down

0 comments on commit 7268e2e

Please sign in to comment.