true error log fix

main
Justus Jan Nico Wolff 2024-06-16 19:25:23 +02:00
parent 2b805c8d75
commit c84e144ac3
2 changed files with 1 additions and 1 deletions

View File

View File

@ -1,7 +1,7 @@
import sys
# Justus Jan Nico Wolff
sys.dont_write_bytecode = True
stderrfile = open("errors.log", 'w')
stderrfile = open("errors.log", 'w', buffering=1)
sys.stderr = stderrfile
import subprocess
import pkg_resources