[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

View File

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