save sysinfo as .json

GitHub now allows uploading of .json files in issues
This commit is contained in:
w-e-w
2023-11-20 01:38:31 +09:00
parent fc83af4432
commit 6d337bf23d
2 changed files with 2 additions and 2 deletions

View File

@@ -441,7 +441,7 @@ def dump_sysinfo():
import datetime
text = sysinfo.get()
filename = f"sysinfo-{datetime.datetime.utcnow().strftime('%Y-%m-%d-%H-%M')}.txt"
filename = f"sysinfo-{datetime.datetime.utcnow().strftime('%Y-%m-%d-%H-%M')}.json"
with open(filename, "w", encoding="utf8") as file:
file.write(text)