Reviewed: https://review.openstack.org/25336 Committed: http://github.com/openstack/quantum/commit/c705fe21f14e1bba9a3ecb62f0f014d460cad569 Submitter: Jenkins Branch: milestone-proposed
commit c705fe21f14e1bba9a3ecb62f0f014d460cad569 Author: Arvind Somya <[email protected]> Date: Thu Mar 21 12:18:20 2013 -0700 Fixing the syntax error in the XML Serializer This commit fixes the syntax error in the XML Serializer. Modified wsgi test to exercise this bit of code as well Fixes: Bug #1158468 Change-Id: I1bff589a46ff4884e131d7cf60551e2f400acb67 ** Changed in: quantum Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to quantum. https://bugs.launchpad.net/bugs/1158468 Title: Syntax error in XML Serializer Status in OpenStack Quantum (virtual network service): Fix Released Bug description: There's a syntax error in the XML Serializer, line 586: result[self._get_key(attr)] = node.get[attr] This should be: result[self._get_key(attr)] = node.get(attr) To manage notifications about this bug go to: https://bugs.launchpad.net/quantum/+bug/1158468/+subscriptions -- Mailing list: https://launchpad.net/~yahoo-eng-team Post to : [email protected] Unsubscribe : https://launchpad.net/~yahoo-eng-team More help : https://help.launchpad.net/ListHelp

