diff options
author | Robin Gloster <robin@loc-com.de> | 2014-08-18 00:18:10 +0200 |
---|---|---|
committer | Robin Gloster <robin@loc-com.de> | 2014-08-18 00:55:10 +0200 |
commit | 1bf34f7fe694c2997710e0d23b0784e824df5e5e (patch) | |
tree | 3641ff7754a221a53d6b5af08ffefa3f6898627d | |
parent | 4144d60017e200d97bcfe0286daee06d4641a9e0 (diff) | |
download | slixmpp-1bf34f7fe694c2997710e0d23b0784e824df5e5e.tar.gz slixmpp-1bf34f7fe694c2997710e0d23b0784e824df5e5e.tar.bz2 slixmpp-1bf34f7fe694c2997710e0d23b0784e824df5e5e.tar.xz slixmpp-1bf34f7fe694c2997710e0d23b0784e824df5e5e.zip |
fix mutable default arguments :boom:
-rw-r--r-- | sleekxmpp/clientxmpp.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py index f837c0f2..8db6ef17 100644 --- a/sleekxmpp/clientxmpp.py +++ b/sleekxmpp/clientxmpp.py @@ -52,7 +52,6 @@ class ClientXMPP(BaseXMPP): :param jid: The JID of the XMPP user account. :param password: The password for the XMPP user account. - :param ssl: **Deprecated.** :param plugin_config: A dictionary of plugin configurations. :param plugin_whitelist: A list of approved plugins that will be loaded when calling @@ -60,8 +59,13 @@ class ClientXMPP(BaseXMPP): :param escape_quotes: **Deprecated.** """ - def __init__(self, jid, password, plugin_config={}, plugin_whitelist=[], - escape_quotes=True, sasl_mech=None, lang='en'): + def __init__(self, jid, password, plugin_config=None, plugin_whitelist=None, escape_quotes=True, sasl_mech=None, + lang='en'): + if not plugin_whitelist: + plugin_whitelist = [] + if not plugin_config: + plugin_config = {} + BaseXMPP.__init__(self, jid, 'jabber:client') self.escape_quotes = escape_quotes |