1
0
Fork 0

[more] Don't display the count string if the message is alone

This commit is contained in:
nemunaire 2015-10-31 15:17:58 +01:00
parent 9790954dfc
commit 979f1d0c55
1 changed files with 1 additions and 1 deletions

View File

@ -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