diff --git a/websucker/agent.py b/websucker/agent.py index 860a5ac..b0e6653 100755 --- a/websucker/agent.py +++ b/websucker/agent.py @@ -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)