summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-02-12 20:01:09 +0000
committerTed Ross <tross@apache.org>2009-02-12 20:01:09 +0000
commitfcdd0466a29df17e20d4d7c158cad4f91ca8700a (patch)
tree2f339da82124a203d26b147f51af6d81641673c6
parent55946250faf17c32ef8f49c724e622e9eedfbdfa (diff)
downloadqpid-python-fcdd0466a29df17e20d4d7c158cad4f91ca8700a.tar.gz
Fixed regression that breaks the default username behavior
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@743856 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/python/qmf/console.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/qmf/console.py b/qpid/python/qmf/console.py
index ed25c77acc..867d707f31 100644
--- a/qpid/python/qmf/console.py
+++ b/qpid/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):