Merge "Stop giving -f and -e lines a pass in requirements"

This commit is contained in:
Jenkins 2014-06-07 00:36:56 +00:00 committed by Gerrit Code Review
commit 47183deb2e

View File

@ -99,9 +99,7 @@ class RequirementsList(object):
line = line[:line.find('#')]
line = line.strip()
if (not line or
line.startswith('http://tarballs.openstack.org/') or
line.startswith('-e') or
line.startswith('-f')):
line.startswith('http://tarballs.openstack.org/')):
continue
req = pkg_resources.Requirement.parse(line)
if (not ignore_dups and strict and req.project_name.lower()