Support two layouts for vnf_price_list.yaml, ignore single endpoint vlds, new vim...
[osm/PLA.git] / setup.py
index 3c80986..97658f1 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ from setuptools import setup
 
 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'