summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/marquee.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/marquee.py b/plugins/marquee.py
index 80bfbfeb..14219161 100644
--- a/plugins/marquee.py
+++ b/plugins/marquee.py
@@ -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))]