diff options
author | Dan McGee <dan@archlinux.org> | 2012-12-31 10:24:09 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-12-31 10:24:21 -0600 |
commit | c37fe107282f1aa4925d6c3eef9b7c1598ab4aa1 (patch) | |
tree | 0af3d01eefaf822f8456f4d897aeb72d0d49c468 /todolists/models.py | |
parent | 04f23a040a839f4989fdc83afe0f5ad4f72224be (diff) |
Minor coding style tweaks
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'todolists/models.py')
-rw-r--r-- | todolists/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/todolists/models.py b/todolists/models.py index e02cdd1a..156b041d 100644 --- a/todolists/models.py +++ b/todolists/models.py @@ -73,7 +73,7 @@ class TodolistPackage(models.Model): comments = models.TextField(null=True, blank=True) class Meta: - unique_together = (('todolist','pkgname', 'arch'),) + unique_together = (('todolist', 'pkgname', 'arch'),) get_latest_by = 'created' def __unicode__(self): |