globaleaks / APAF

Anonymous Python Application Framework
33 stars 15 forks source link

Installation error #49

Closed estevopaz closed 11 years ago

estevopaz commented 11 years ago

setup.py has a syntax error, the line 82 must be corrected:

with open('requirements.txt') as dependencies:
    requirements = [dependency.strip() for dependency in dependencies]

instead of:

requirements = [dependency.strip() for dependency in depencies]