diff options
author | Ryota Mibu <r-mibu@cq.jp.nec.com> | 2018-01-09 13:02:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-09 13:02:33 +0000 |
commit | 9fd701278bf7d8c5b9451491bcb1a92580adc780 (patch) | |
tree | 885287d68762c5e755f082c88780b45e056dcc57 /doctor_tests/network.py | |
parent | d767217e4ed267c585aa94fbbd3001ec0d59de8c (diff) | |
parent | 754b94bba6df6e7aafd5f1ffb8432a40cb815649 (diff) |
Merge "support pep8 check"
Diffstat (limited to 'doctor_tests/network.py')
-rw-r--r-- | doctor_tests/network.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doctor_tests/network.py b/doctor_tests/network.py index ee153e66..0965e01f 100644 --- a/doctor_tests/network.py +++ b/doctor_tests/network.py @@ -47,7 +47,8 @@ class Network(object): self.log.info('network create end.......') self.log.info('subnet create start.......') - subnets = self.neutron.list_subnets(network_id=self.net['id'])['subnets'] + subnets = \ + self.neutron.list_subnets(network_id=self.net['id'])['subnets'] subnet_param = {'name': net_name, 'network_id': self.net['id'], 'cidr': self.conf.net_cidr, 'ip_version': 4, 'enable_dhcp': False} |