diff options
-rw-r--r-- | poezio/core/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 86df9a93..2cb2b291 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -780,7 +780,7 @@ class CommandCore: jids.add(safeJID(jid).bare) asyncio.ensure_future(self.core.impromptu(jids)) - self.core.information('Invited %s to a random room' % (' '.join(jids)), 'Info') + self.core.information('Invited %s to a random room' % (', '.join(jids)), 'Info') @command_args_parser.quoted(1, 1, ['']) def decline(self, args): |