Support two layouts for vnf_price_list.yaml, ignore single endpoint vlds, new vim identification key.
Change-Id: I14f9f5d3ecefec27ed68a2475149a49f0ece9208
Signed-off-by: magnussonl <lars-goran.magnusson@arctoslabs.com>
(cherry picked from commit d8c1b391e9b8b9531c647a422495c94ca3373ed0)
diff --git a/setup.py b/setup.py
index 3c80986..97658f1 100755
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@
def parse_requirements(requirements):
with open(requirements) as f:
- return [l.strip('\n') for l in f if l.strip('\n') and not l.startswith('#') and '://' not in l]
+ return [req.strip('\n') for req in f if req.strip('\n') and not req.startswith('#') and '://' not in req]
_name = 'osm_pla'