removed debug statement

This commit is contained in:
phixxy 2024-07-20 13:01:47 -07:00
parent 739cdb710d
commit 8a3c18b857

View file

@ -38,7 +38,6 @@ async def index():
with open('.env', 'w') as file: with open('.env', 'w') as file:
for key, value in form_dict.items(): for key, value in form_dict.items():
file.write(f"{key}='{value}'\n") file.write(f"{key}='{value}'\n")
print(form_dict)
flask_app.bot_process.terminate() flask_app.bot_process.terminate()
flask_app.bot_process = subprocess.Popen([sys.executable, "sparkytron3000.py"]) flask_app.bot_process = subprocess.Popen([sys.executable, "sparkytron3000.py"])
message = "Variables Updated!" message = "Variables Updated!"