Browse Source

Don't write description out to a temporary file

pull/813/head
Ross McFarland 4 years ago
parent
commit
38744a0e96
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      setup.py

+ 1
- 4
setup.py View File

@ -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(


Loading…
Cancel
Save