diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-01-07 17:30:08 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-01-07 17:30:08 +0100 |
commit | 229d56456b6c0c3d389706056dc6e754ae733e74 (patch) | |
tree | c2789c5ce551314e387eb34f6b05de47fd8ad868 /src/tabs.py | |
parent | 2ea8673a0408bb3151ea8fdb4045814d88e770bb (diff) | |
download | poezio-229d56456b6c0c3d389706056dc6e754ae733e74.tar.gz poezio-229d56456b6c0c3d389706056dc6e754ae733e74.tar.bz2 poezio-229d56456b6c0c3d389706056dc6e754ae733e74.tar.xz poezio-229d56456b6c0c3d389706056dc6e754ae733e74.zip |
fix a tb on /accept
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index 166c9e25..d2573213 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -2632,7 +2632,7 @@ class RosterInfoTab(Tab): return else: jid = safeJID(arg).bare - nodepart = jid.user + nodepart = safeJID(jid).user # crappy transports putting resources inside the node part if '\\2f' in nodepart: jid.user = nodepart.split('\\2f')[0] |