summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-08-08 18:11:56 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-08-08 18:11:56 +0200
commit2e73331d073e074439431fce7d55f566ee4fe269 (patch)
treeebf8ef78bba4ac9207734b3d44810d4baf04eed2
parent8a32ab2514c78e41912270170174e68b9e2a5c02 (diff)
downloadpoezio-2e73331d073e074439431fce7d55f566ee4fe269.tar.gz
poezio-2e73331d073e074439431fce7d55f566ee4fe269.tar.bz2
poezio-2e73331d073e074439431fce7d55f566ee4fe269.tar.xz
poezio-2e73331d073e074439431fce7d55f566ee4fe269.zip
Fix a traceback on command_win: matchin_names() must return strings, not JIDs
-rw-r--r--src/tabs/adhoc_commands_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/adhoc_commands_list.py b/src/tabs/adhoc_commands_list.py
index 5a5068f0..7f5abf6a 100644
--- a/src/tabs/adhoc_commands_list.py
+++ b/src/tabs/adhoc_commands_list.py
@@ -18,7 +18,7 @@ class AdhocCommandsListTab(ListTab):
plugin_keys = {}
def __init__(self, jid):
- ListTab.__init__(self, jid,
+ ListTab.__init__(self, jid.full,
"“Enter”: execute selected command.",
_('Ad-hoc commands of JID %s (Loading)') % jid,
(('Node', 0), ('Description', 1)))