From 0585a97556d9673883b5bc3fbfbd3471b60b5704 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 25 May 2017 09:55:52 -0400 Subject: [PATCH] Fix whitespace --- pgweb/contributors/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pgweb/contributors/models.py b/pgweb/contributors/models.py index 3359fb76..7ccf5748 100644 --- a/pgweb/contributors/models.py +++ b/pgweb/contributors/models.py @@ -12,7 +12,7 @@ class ContributorType(models.Model): def __unicode__(self): return self.typename - + class Meta: ordering = ('sortorder',) @@ -32,6 +32,6 @@ class Contributor(models.Model): def __unicode__(self): return "%s %s" % (self.firstname, self.lastname) - + class Meta: ordering = ('lastname', 'firstname',) -- 2.11.4.GIT