Fix indentation of multi-line messages

This commit is contained in:
Joscha 2019-06-22 21:14:08 +00:00
parent d445586c92
commit 6f0555c21b
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
## Next version
Nothing yet
- Fix indentation of multi-line messages
## 1.0.0 (2019-06-21)

View file

@ -123,7 +123,7 @@ class EuphRenderer(CursorRenderer):
right = AT(self._surround_right, attributes=self._surround_attrs)
nick_str = left + nick + right + AT(" ")
nick_spaces = AT(" " * len(nick))
nick_spaces = AT(" " * len(nick_str))
content = self._filter_unicode(message.content)
lines = []