Don't write description out to a temporary file

This commit is contained in:
Ross McFarland
2021-11-24 06:37:00 -08:00
parent 49773cbcf7
commit 38744a0e96
+1 -4
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(