1
0
Fork 0

[more] Don't append space after a cut not ended by space

This commit is contained in:
nemunaire 2015-11-30 07:09:27 +01:00
parent d4b6283e23
commit a089efff1a
1 changed files with 3 additions and 1 deletions

View File

@ -192,7 +192,9 @@ class Response:
msg += self.title + ": "
elif self.elt > 0:
msg += "[…] "
msg += "[…]"
if self.messages[0][self.elt - 1] == ' ':
msg += " "
elts = self.messages[0][self.elt:]
if isinstance(elts, list):