summaryrefslogtreecommitdiff
path: root/python/qpid/delegates.py
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-11-12 21:16:59 +0000
committerTed Ross <tross@apache.org>2009-11-12 21:16:59 +0000
commit6f9250296ea06f6d7058e13f0bebaf78cb699fff (patch)
treea79930e890b825958e8d65cfd1ac5c23a4c2f378 /python/qpid/delegates.py
parent5259996c79e460768f9656c2f070c4007854dd14 (diff)
downloadqpid-python-6f9250296ea06f6d7058e13f0bebaf78cb699fff.tar.gz
QPID-2198 - Moved SASL wrapper out of the cpp area and removed "qpid" from its name.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@835550 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/delegates.py')
-rw-r--r--python/qpid/delegates.py4
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: