summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-11-04 23:07:54 +0100
committermathieui <mathieui@mathieui.net>2015-11-04 23:07:54 +0100
commit2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4 (patch)
tree43ca775f082f2b8876b6873cdc1a6befe167032d
parentd52fe4c23efbd638afc3769a86b7050456b3eb2c (diff)
downloadpoezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.tar.gz
poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.tar.bz2
poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.tar.xz
poezio-2b777bcecadb1b51c1cf04c7450ef126f5ecd5b4.zip
Fix #3113 (show outgoing invitations to the log)
-rw-r--r--src/core/commands.py1
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):