diff options
author | Magnus Hagander | 2018-06-20 10:02:09 +0000 |
---|---|---|
committer | Magnus Hagander | 2018-06-20 10:02:09 +0000 |
commit | 37da576ffa4be185e669e04c1e968ec64013c198 (patch) | |
tree | 2de0094152edd5fb28c23412639dab0ad7500033 | |
parent | d498b9861ae2c1638899e5e56cd0320d3b86cc5e (diff) |
Remove unused method
-rw-r--r-- | pgcommitfest/commitfest/models.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pgcommitfest/commitfest/models.py b/pgcommitfest/commitfest/models.py index b136117..6afa7cf 100644 --- a/pgcommitfest/commitfest/models.py +++ b/pgcommitfest/commitfest/models.py @@ -292,10 +292,6 @@ class PatchBuildStatus(models.Model): def textstatus(self): return self._STATUS_CHOICE_MAP[self.buildstatus] - @property - def urlstatus(self): - return self._STATUS_REVERSE_MAP[self.buildstatus] - class MailThread(models.Model): # This class tracks mail threads from the main postgresql.org # mailinglist archives. For each thread, we store *one* messageid. |