diff options
author | Michael Chapman <michapma@redhat.com> | 2016-07-14 02:32:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-07-14 02:32:19 +0000 |
commit | 79fae9380d8e5480c38fe6f0e3483eff64bf0dec (patch) | |
tree | 0b62cee12d87a7aea8c460f6847d72a40b567c4d /lib | |
parent | 5dc5309bdafb0e8800605e2248e4a837c84d3880 (diff) | |
parent | 5bec8f5c95158a74f409d175fb6b2de4c1454823 (diff) |
Merge "correction to a conditional in nic template"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/apex/network_environment.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/python/apex/network_environment.py b/lib/python/apex/network_environment.py index fec6299d..bf4bdc79 100644 --- a/lib/python/apex/network_environment.py +++ b/lib/python/apex/network_environment.py @@ -9,11 +9,13 @@ import yaml import re -from .common.constants import ADMIN_NETWORK -from .common.constants import PRIVATE_NETWORK -from .common.constants import STORAGE_NETWORK -from .common.constants import PUBLIC_NETWORK -from .common.constants import API_NETWORK +from .common.constants import ( + ADMIN_NETWORK, + PRIVATE_NETWORK, + STORAGE_NETWORK, + PUBLIC_NETWORK, + API_NETWORK, +) PORTS = '/ports' # Resources defined by <resource name>: <prefix> |