From 979f1d0c5531e240d9c7209d411c41e4911a1012 Mon Sep 17 00:00:00 2001 From: nemunaire Date: Sat, 31 Oct 2015 15:17:58 +0100 Subject: [PATCH] [more] Don't display the count string if the message is alone --- modules/more.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/more.py b/modules/more.py index bab32a5..08be14b 100644 --- a/modules/more.py +++ b/modules/more.py @@ -209,7 +209,7 @@ class Response: else: if len(elts.encode()) <= maxlen: self.pop() - if self.count is not None: + if self.count is not None and not self.alone: return msg + elts + (self.count % len(self.messages)) else: return msg + elts