diff options
author | Ted Ross <tross@apache.org> | 2009-02-12 20:01:09 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-02-12 20:01:09 +0000 |
commit | aa5e03ba82f2c42e2e89466468e03209bd31cee3 (patch) | |
tree | c39f3b3dba689570cec3d566c8d15601c1facaf0 /python/qmf/console.py | |
parent | bffd507d565f4030407dc3d998f0e7ead2b39aa7 (diff) | |
download | qpid-python-aa5e03ba82f2c42e2e89466468e03209bd31cee3.tar.gz |
Fixed regression that breaks the default username behavior
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@743856 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qmf/console.py')
-rw-r--r-- | python/qmf/console.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qmf/console.py b/python/qmf/console.py index ed25c77acc..867d707f31 100644 --- a/python/qmf/console.py +++ b/python/qmf/console.py @@ -96,8 +96,8 @@ class BrokerURL(URL): self.port = 5671 else: self.port = 5672 - self.authName = str(self.user) or "guest" - self.authPass = str(self.password) or "guest" + self.authName = str(self.user or "guest") + self.authPass = str(self.password or "guest") self.authMech = "PLAIN" def name(self): |