aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-06-21 23:31:43 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-06-21 23:31:43 -0400
commit8ef7f4149892036ced1e015b8d633e139672ffca (patch)
treebae2369ae8ee3803e96531dbbc1fe653b2eaee0f /setup.py
parentomnijson (diff)
downloadpython-github3-8ef7f4149892036ced1e015b8d633e139672ffca.tar.xz
python-github3-8ef7f4149892036ced1e015b8d633e139672ffca.zip
reqs fix
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6cb32ea..f75fd59 100755
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ if sys.argv[-1] == 'publish':
sys.exit()
with open('reqs.txt') as f:
- required = f.readlines()
+ required = map(str.rstrip, f.readlines())
setup(
name='github3',