aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__init__.py b/bot/__init__.py
index d4b9b13a0..c4f99216a 100644
--- a/bot/__init__.py
+++ b/bot/__init__.py
@@ -217,7 +217,7 @@ def _get_word(self) -> str:
self.buffer = f"{prefix}{parsed_result}"
if new_args:
- self.buffer += ' '.join(new_args)
+ self.buffer += (" " + " ".join(new_args))
self.index = len(f"{prefix}{parsed_result}")
self.end = len(self.buffer)