Browse Source
Don't write description out to a temporary file
pull/813/head
Ross McFarland
4 years ago
No known key found for this signature in database
GPG Key ID: 943B179E15D3B22A
1 changed files with
1 additions and
4 deletions
-
setup.py
|
|
|
@ -52,10 +52,7 @@ def long_description(): |
|
|
|
supported_providers = True |
|
|
|
continue |
|
|
|
buf.write(line) |
|
|
|
buf = buf.getvalue() |
|
|
|
with open('/tmp/mod', 'w') as fh: |
|
|
|
fh.write(buf) |
|
|
|
return buf |
|
|
|
return buf.getvalue() |
|
|
|
|
|
|
|
|
|
|
|
setup( |
|
|
|
|