sebastien - in flumotion/trunk: . flumotion/common

flumotion-commit at lists.fluendo.com flumotion-commit at lists.fluendo.com
Fri May 25 13:14:01 CEST 2007


Author: sebastien
Date: Fri May 25 13:13:58 2007
New Revision: 5037

Modified:
   flumotion/trunk/ChangeLog
   flumotion/trunk/flumotion/common/config.py
Log:
2007-05-25  Sebastien Merle  <sebastien at fluendo.com>

	* flumotion/common/config.py:
	Fixed a bug that made manager name become a list.
	Fixes #610


Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog	(original)
+++ flumotion/trunk/ChangeLog	Fri May 25 13:13:58 2007
@@ -1,3 +1,9 @@
+2007-05-25  Sebastien Merle  <sebastien at fluendo.com>
+
+	* flumotion/common/config.py:
+	Fixed a bug that made manager name become a list.
+	Fixes #610
+
 2007-05-24  Michael Smith <msmith at fluendo.com>
 
 	* configure.ac:

Modified: flumotion/trunk/flumotion/common/config.py
==============================================================================
--- flumotion/trunk/flumotion/common/config.py	(original)
+++ flumotion/trunk/flumotion/common/config.py	Fri May 25 13:13:58 2007
@@ -599,7 +599,7 @@
     def _parseManagerWithoutRegistry(self, node):
         # We parse without asking for a registry so the registry doesn't
         # verify before knowing the debug level
-        name = self.parseAttributes(node, (), ('name',))
+        name, = self.parseAttributes(node, (), ('name',))
         ret = ConfigEntryManager(name, None, None, None, None, None,
                                  None, self.plugs)
 


More information about the flumotion-commit mailing list