diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/qpid/delegates.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/delegates.py b/python/qpid/delegates.py index f8f3ae0d89..4c41a6241f 100644 --- a/python/qpid/delegates.py +++ b/python/qpid/delegates.py @@ -27,7 +27,7 @@ import sys _have_sasl = None try: - import qpidsasl + import saslwrapper _have_sasl = True except: pass @@ -175,7 +175,7 @@ class Client(Delegate): self.password = password if _have_sasl: - self.sasl = qpidsasl.Client() + self.sasl = saslwrapper.Client() if username and len(username) > 0: self.sasl.setAttr("username", str(username)) if password and len(password) > 0: |
