diff options
| author | 2011-06-21 23:31:43 -0400 | |
|---|---|---|
| committer | 2011-06-21 23:31:43 -0400 | |
| commit | 8ef7f4149892036ced1e015b8d633e139672ffca (patch) | |
| tree | bae2369ae8ee3803e96531dbbc1fe653b2eaee0f | |
| parent | omnijson (diff) | |
| download | python-github3-8ef7f4149892036ced1e015b8d633e139672ffca.tar.xz python-github3-8ef7f4149892036ced1e015b8d633e139672ffca.zip | |
reqs fix
| -rw-r--r-- | reqs.txt | 4 | ||||
| -rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,2 +1,2 @@ -requests=0.5.0 -omnijson=0.1.2
\ No newline at end of file +requests==0.5.0 +omnijson==0.1.2
\ No newline at end of file @@ -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', |
