From bfd02c5db39ee2dad30d0edefb205b56a4248594 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Tue, 15 Jan 2013 19:36:30 +0530 Subject: [PATCH] traffic_type not traffictype Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/deployDataCenter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/marvin/marvin/deployDataCenter.py b/tools/marvin/marvin/deployDataCenter.py index ff3b6e6d0e0..e4f7eace9bd 100644 --- a/tools/marvin/marvin/deployDataCenter.py +++ b/tools/marvin/marvin/deployDataCenter.py @@ -260,8 +260,8 @@ class deployDataCenters(): traffic_type.traffictype = traffictype.typ traffic_type.kvmnetworklabel = traffictype.kvm if traffictype.kvm is not None else None traffic_type.xennetworklabel = traffictype.xen if traffictype.xen is not None else None - traffictype.vmwarenetworklabel = traffictype.vmware if traffictype.vmware is not None else None - traffictype.simulatorlabel = traffictype.simulator if traffictype.simulator is not None else None + traffic_type.vmwarenetworklabel = traffictype.vmware if traffictype.vmware is not None else None + traffic_type.simulatorlabel = traffictype.simulator if traffictype.simulator is not None else None return self.apiClient.addTrafficType(traffic_type) def enableZone(self, zoneid, allocation_state="Enabled"):