Skip to content

Commit

Permalink
Fixed upstream typo
Browse files Browse the repository at this point in the history
Thanks Kunda for the report!
  • Loading branch information
Bouke committed Jan 9, 2014
1 parent ae3b07a commit d4c44aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user_sessions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Session(models.Model):
session_key = models.CharField(_('session key'), max_length=40,
primary_key=True)
session_data = models.TextField(_('session data'))
expire_date = models.DateTimeField(_('expire date'), db_index=True)
expire_date = models.DateTimeField(_('expiry date'), db_index=True)
objects = SessionManager()

class Meta:
Expand Down

0 comments on commit d4c44aa

Please sign in to comment.