commit 4fa06913a09a7aafb64d6c369c2c1ad43bcf5f5f Author: Arturo Filastò hellais@gmail.com Date: Wed Nov 14 21:33:58 2012 +0100
Fix typo in requirements.txt file parsing
Thanks to @estevopaz for reporting it. Closes #49 --- setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/setup.py b/setup.py index 5f1ef10..d7a21fd 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ if os.path.exists(join(mandir, 'apaf.1')): ## Dependencies ## requirements = None with open('requirements.txt') as dependencies: - requirements = [dependency.strip() for dependency in depencies] + requirements = [dependency.strip() for dependency in dependencies]
setup( name=config.appname,
tor-commits@lists.torproject.org