diff options
Diffstat (limited to 'src/leap/common/events/auth.py')
| -rw-r--r-- | src/leap/common/events/auth.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/leap/common/events/auth.py b/src/leap/common/events/auth.py index 1a1bcab..5b71f2d 100644 --- a/src/leap/common/events/auth.py +++ b/src/leap/common/events/auth.py @@ -38,8 +38,8 @@ class TxAuthenticator(ZmqConnection):      address = 'inproc://zeromq.zap.01'      encoding = 'utf-8' -    def __init__(self, factory): -        super(TxAuthenticator, self).__init__(factory) +    def __init__(self, factory, *args, **kw): +        super(TxAuthenticator, self).__init__(factory, *args, **kw)          self.authenticator = Authenticator(factory.context)          self.authenticator._send_zap_reply = self._send_zap_reply | 
