diff options
-rw-r--r-- | src/core/commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/commands.py b/src/core/commands.py index 33e2e9df..c423ce10 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -774,6 +774,7 @@ def command_invite(self, args): to = safeJID(args[0]) room = safeJID(args[1]).bare self.invite(to.full, room, reason=reason) + self.information('Invited %s to %s' % (to.bare, room), 'Info') @command_args_parser.quoted(1, 1, ['']) def command_decline(self, args): |