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:
parent
50d97b4c3c
commit
ae2ce4dd1a
1 changed files with 1 additions and 1 deletions
|
@ -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))]
|
||||
|
||||
|
|
Loading…
Reference in a new issue