plugins/marquee: Change space char to nbsp to troll other clients better

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2020-05-26 14:36:41 +02:00
parent 50d97b4c3c
commit ae2ce4dd1a
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -41,7 +41,7 @@ from poezio.decorators import command_args_parser
def move(text, step, spacing):
new_text = text + (" " * spacing)
new_text = text + ("\u00A0" * spacing)
return new_text[-(step % len(new_text)):] + new_text[:-(
step % len(new_text))]