From 6f9250296ea06f6d7058e13f0bebaf78cb699fff Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Thu, 12 Nov 2009 21:16:59 +0000 Subject: 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 --- python/qpid/delegates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/qpid') 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: -- cgit v1.2.1