You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2009/02/12 21:01:10 UTC

svn commit: r743856 - /qpid/trunk/qpid/python/qmf/console.py

Author: tross
Date: Thu Feb 12 20:01:09 2009
New Revision: 743856

URL: http://svn.apache.org/viewvc?rev=743856&view=rev
Log:
Fixed regression that breaks the default username behavior

Modified:
    qpid/trunk/qpid/python/qmf/console.py

Modified: qpid/trunk/qpid/python/qmf/console.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qmf/console.py?rev=743856&r1=743855&r2=743856&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qmf/console.py (original)
+++ qpid/trunk/qpid/python/qmf/console.py Thu Feb 12 20:01:09 2009
@@ -96,8 +96,8 @@
         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):



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org