mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
The Log class needed a __str__() method
This commit is contained in:
parent
1c45ca10d4
commit
eb01bcf98b
@ -29,6 +29,9 @@ class Log(models.Model):
|
|||||||
class Meta(object):
|
class Meta(object):
|
||||||
ordering = ("-time",)
|
ordering = ("-time",)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.message
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def error(cls, message, component):
|
def error(cls, message, component):
|
||||||
cls.objects.create(
|
cls.objects.create(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user