1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

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

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(