summaryrefslogtreecommitdiff
path: root/qpid/python
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
commitede81b1fc1f308176abebecbc1c7758576cd6077 (patch)
treebff38bcd860da35cb29dcfbc63e34bac7395449e /qpid/python
parentf459b3943e8b6ae48d54f4649f706b6ee0fbbcfd (diff)
downloadqpid-python-ede81b1fc1f308176abebecbc1c7758576cd6077.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@835550 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/qpid/delegates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/qpid/delegates.py b/qpid/python/qpid/delegates.py
index f8f3ae0d89..4c41a6241f 100644
--- a/qpid/python/qpid/delegates.py
+++ b/qpid/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: