summaryrefslogtreecommitdiff
path: root/src/core/handlers.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-05-21 14:33:08 +0200
committermathieui <mathieui@mathieui.net>2015-06-06 17:08:29 +0200
commitb7a7da12fa46b0011e26203c141969f10af4ced9 (patch)
treee2f364cbe0a0fddfc63a66b123f25dd415c3591b /src/core/handlers.py
parent3077ec2bc1bddcdcc36f03cca4244dbb0faff90a (diff)
downloadpoezio-b7a7da12fa46b0011e26203c141969f10af4ced9.tar.gz
poezio-b7a7da12fa46b0011e26203c141969f10af4ced9.tar.bz2
poezio-b7a7da12fa46b0011e26203c141969f10af4ced9.tar.xz
poezio-b7a7da12fa46b0011e26203c141969f10af4ced9.zip
Fix #3062 (mention /accept or /deny must be done in the roster tab)
Diffstat (limited to 'src/core/handlers.py')
-rw-r--r--src/core/handlers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/handlers.py b/src/core/handlers.py
index 012e90d3..288de782 100644
--- a/src/core/handlers.py
+++ b/src/core/handlers.py
@@ -763,9 +763,9 @@ def on_subscription_request(self, presence):
contact = roster.get_and_set(jid)
roster.update_contact_groups(contact)
contact.pending_in = True
- self.information('%s wants to subscribe to your presence, '
- 'use /accept <jid> or /deny <jid> to accept '
- 'or reject the query.' % jid,
+ self.information('%s wants to subscribe to your presence, use '
+ '/accept <jid> or /deny <jid> in the roster '
+ 'tab to accept or reject the query.' % jid,
'Roster')
self.get_tab_by_number(0).state = 'highlight'
roster.modified()