Shorten Status.__str__ because it gets overwhelming in the logs

merge-requests/2/head
Marnanel Thurman 2021-02-14 21:59:47 +00:00
rodzic 6ae898af03
commit a9d03dd280
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -278,7 +278,7 @@ class Status(PolymorphicModel):
trilby_signals.reblogged.send(sender=self)
def __str__(self):
return '[Status %s: %s]' % (
return '%s: %s' % (
self.id,
self.content,
)