summaryrefslogtreecommitdiff
path: root/src/leap/crypto/srpauth.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/crypto/srpauth.py')
-rw-r--r--src/leap/crypto/srpauth.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/crypto/srpauth.py b/src/leap/crypto/srpauth.py
index 8530b7da..2877efab 100644
--- a/src/leap/crypto/srpauth.py
+++ b/src/leap/crypto/srpauth.py
@@ -41,7 +41,7 @@ class SRPAuth(QtCore.QObject):
SRPAuth singleton
"""
- class __impl(object):
+ class __impl(QtCore.QObject):
"""
Implementation of the SRPAuth interface
"""
@@ -57,6 +57,8 @@ class SRPAuth(QtCore.QObject):
@param server: Server to which we will authenticate
@type server: str
"""
+ QtCore.QObject.__init__(self)
+
leap_assert(provider_config,
"We need a provider config to authenticate")