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):
|
||||
ordering = ("-time",)
|
||||
|
||||
def __str__(self):
|
||||
return self.message
|
||||
|
||||
@classmethod
|
||||
def error(cls, message, component):
|
||||
cls.objects.create(
|
||||
|
Loading…
x
Reference in New Issue
Block a user