diff options
author | mathieui <mathieui@mathieui.net> | 2015-11-04 23:07:54 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-11-04 23:07:54 +0100 |
commit | 2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4 (patch) | |
tree | 43ca775f082f2b8876b6873cdc1a6befe167032d /src | |
parent | d52fe4c23efbd638afc3769a86b7050456b3eb2c (diff) | |
download | poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.tar.gz poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.tar.bz2 poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.tar.xz poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.zip |
Fix #3113 (show outgoing invitations to the log)
Diffstat (limited to 'src')
-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): |