Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'nbxmpp/smacks.py')
-rw-r--r--nbxmpp/smacks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nbxmpp/smacks.py b/nbxmpp/smacks.py
index f2f9efd..983b651 100644
--- a/nbxmpp/smacks.py
+++ b/nbxmpp/smacks.py
@@ -37,7 +37,7 @@ class Smacks:
number of handled stanzas
"""
- def __init__(self, client, log_context):
+ def __init__(self, client):
self._client = client
self._out_h = 0 # Outgoing stanzas handled
self._in_h = 0 # Incoming stanzas handled
@@ -59,7 +59,7 @@ class Smacks:
self._session_id = None
self._location = None
- self._log = LogAdapter(log, {'context': log_context})
+ self._log = LogAdapter(log, {'context': client.log_context})
self.register_handlers()