diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-08-08 18:11:56 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-08-08 18:11:56 +0200 |
commit | 2e73331d073e074439431fce7d55f566ee4fe269 (patch) | |
tree | ebf8ef78bba4ac9207734b3d44810d4baf04eed2 /src/tabs/adhoc_commands_list.py | |
parent | 8a32ab2514c78e41912270170174e68b9e2a5c02 (diff) | |
download | poezio-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
Diffstat (limited to 'src/tabs/adhoc_commands_list.py')
-rw-r--r-- | src/tabs/adhoc_commands_list.py | 2 |
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))) |