From a9d03dd280a9259686b741da23095b6703f9c056 Mon Sep 17 00:00:00 2001 From: Marnanel Thurman Date: Sun, 14 Feb 2021 21:59:47 +0000 Subject: [PATCH] Shorten Status.__str__ because it gets overwhelming in the logs --- kepi/trilby_api/models/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kepi/trilby_api/models/status.py b/kepi/trilby_api/models/status.py index e1d9e9b..826ae04 100644 --- a/kepi/trilby_api/models/status.py +++ b/kepi/trilby_api/models/status.py @@ -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, )