From: Yang Yu Date: Fri, 29 Aug 2014 06:05:26 +0000 (-0700) Subject: Datacenter moid should not be tuple X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ace3a01ebf980c166b4dfe6d1216b17bf0aec2ed;p=openstack-build%2Fneutron-build.git Datacenter moid should not be tuple Remove the comma, because it will convert the string to tuple Closes-bug: #1362480 Change-Id: I2debb76bae26fe3d437a431f2946f66a1cbe6851 --- diff --git a/neutron/plugins/vmware/vshield/edge_appliance_driver.py b/neutron/plugins/vmware/vshield/edge_appliance_driver.py index ce61b8f81..806a18c62 100644 --- a/neutron/plugins/vmware/vshield/edge_appliance_driver.py +++ b/neutron/plugins/vmware/vshield/edge_appliance_driver.py @@ -62,7 +62,7 @@ class EdgeApplianceDriver(object): edge['appliances']['deploymentContainerId'] = ( deployment_container_id) if datacenter_moid: - edge['datacenterMoid'] = datacenter_moid, + edge['datacenterMoid'] = datacenter_moid return edge