Skip to content

Commit

Permalink
Fixed issues with system checks for newer Django versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ddanier committed Sep 9, 2015
1 parent 68bea95 commit 3e7bdb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_price/models.py
Expand Up @@ -13,7 +13,7 @@ class Tax(SubDeferredPolymorphBaseModel):
name = models.CharField(max_length=25)

created = models.DateTimeField(editable=False, default=datetime.datetime.now)
modified = models.DateTimeField(editable=False, default=datetime.datetime.now, auto_now=True)
modified = models.DateTimeField(editable=False, auto_now=True)

objects = TaxManager()

Expand Down

0 comments on commit 3e7bdb5

Please sign in to comment.