Patched sorting

This commit is contained in:
Daniel Quinn 2016-02-17 00:11:57 +00:00
parent 550184cbae
commit 1c45ca10d4

View File

@ -27,7 +27,7 @@ class Log(models.Model):
component = models.PositiveIntegerField(choices=COMPONENTS)
class Meta(object):
ordering = ("time",)
ordering = ("-time",)
@classmethod
def error(cls, message, component):