summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0009/remote.py
diff options
context:
space:
mode:
authorRobin Gloster <robin@loc-com.de>2014-08-18 00:52:24 +0200
committerRobin Gloster <robin@loc-com.de>2014-08-18 00:52:24 +0200
commit7265682a4d57d88956cb54f98f7a470465bbf417 (patch)
treed32011f02f648de9ba2d5ea99d5af1daefecbaf9 /sleekxmpp/plugins/xep_0009/remote.py
parent08c62a6bf1fe19ddf1f0c8fa441750f41f5d9436 (diff)
downloadslixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.tar.gz
slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.tar.bz2
slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.tar.xz
slixmpp-7265682a4d57d88956cb54f98f7a470465bbf417.zip
cleanup semicolons, whitespace and mutable default arguments
Diffstat (limited to 'sleekxmpp/plugins/xep_0009/remote.py')
-rw-r--r--sleekxmpp/plugins/xep_0009/remote.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0009/remote.py b/sleekxmpp/plugins/xep_0009/remote.py
index 8847ff24..e85c3fa9 100644
--- a/sleekxmpp/plugins/xep_0009/remote.py
+++ b/sleekxmpp/plugins/xep_0009/remote.py
@@ -697,7 +697,8 @@ 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]