From 8b047738eff59272c5563e0449b4223984f935c2 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 25 Apr 2014 12:42:21 -0400 Subject: [PATCH] fix syntax error --- planetstack/openstack/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planetstack/openstack/driver.py b/planetstack/openstack/driver.py index cb7b4bf..91807f1 100644 --- a/planetstack/openstack/driver.py +++ b/planetstack/openstack/driver.py @@ -272,7 +272,7 @@ class OpenStackDriver: 'ip_version': ip_version, 'cidr': cidr_ip, #'dns_nameservers': ['8.8.8.8', '8.8.4.4'], - 'host_routes': [{'destination':'169.254.169.254/32','nexthop':metadata_ip}] + 'host_routes': [{'destination':'169.254.169.254/32','nexthop':metadata_ip}], 'gateway_ip': None, 'allocation_pools': allocation_pools}} subnet = self.shell.quantum.create_subnet(subnet)['subnet'] -- 2.47.0