Removed the check for comments in requirements parsing

This commit is contained in:
Bruno Renié 2012-12-04 15:49:40 +01:00
parent 5d2ed13040
commit aa416583ae

View file

@ -99,9 +99,7 @@ libraries = ['ws2_32'] if sys.platform == 'win32' else []
with open(salt_reqs) as f:
lines = f.read().split('\n')
requirements = [
line for line in lines if (line and not line.startswith('#'))
]
requirements = [line for line in lines if line]
setup_kwargs = {'name': NAME,