This commit is contained in:
Daniel Hládek 2021-01-20 09:56:53 +01:00
parent 2941bf8a4c
commit e287236033

View File

@ -355,7 +355,7 @@ class ParsedDocument:
if (len(self.body) < 20):
r.append(self.body)
else:
r.append(self.body[0:20]) + " ...."
r.append(self.body[0:20] + " ....")
return ">>> ".join(r)