diff options
author | Robin Gloster <robin@loc-com.de> | 2014-08-18 15:15:14 +0200 |
---|---|---|
committer | Robin Gloster <robin@loc-com.de> | 2014-08-18 15:15:14 +0200 |
commit | 3dd379cdf12d885e26f8ec26c54879a95d5f0b84 (patch) | |
tree | 5dc018384ad03253608ff79c9fdbb577b84d2d2f /sleekxmpp/plugins/xep_0009/remote.py | |
parent | 7265682a4d57d88956cb54f98f7a470465bbf417 (diff) | |
download | slixmpp-3dd379cdf12d885e26f8ec26c54879a95d5f0b84.tar.gz slixmpp-3dd379cdf12d885e26f8ec26c54879a95d5f0b84.tar.bz2 slixmpp-3dd379cdf12d885e26f8ec26c54879a95d5f0b84.tar.xz slixmpp-3dd379cdf12d885e26f8ec26c54879a95d5f0b84.zip |
Revert "cleanup semicolons, whitespace and mutable default arguments"
This reverts commit 7265682a4d57d88956cb54f98f7a470465bbf417.
Diffstat (limited to 'sleekxmpp/plugins/xep_0009/remote.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0009/remote.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0009/remote.py b/sleekxmpp/plugins/xep_0009/remote.py index e85c3fa9..8847ff24 100644 --- a/sleekxmpp/plugins/xep_0009/remote.py +++ b/sleekxmpp/plugins/xep_0009/remote.py @@ -697,8 +697,7 @@ class Remote(object): if(client.boundjid.bare in cls._sessions): raise RemoteException("There already is a session associated with these credentials!") else: - cls._sessions[client.boundjid.bare] = client - + cls._sessions[client.boundjid.bare] = client; def _session_close_callback(): with Remote._lock: del cls._sessions[client.boundjid.bare] |