Change how ESCAPE_HTML set

This commit is contained in:
Andrew Dinh 2021-05-16 23:30:26 -07:00
parent 5cc68b7d0a
commit 7860d0ef3e
Signed by: andrewkdinh
GPG Key ID: 2B557D93C6C08B86
1 changed files with 1 additions and 10 deletions

11
main.py
View File

@ -13,16 +13,7 @@ if not HTTP_ENDPOINT:
print("ERROR: HTTP_ENDPOINT not set")
exit(1)
if not ESCAPE_HTML:
print("ERROR: ESCAPE_HTML not set")
exit(1)
if ESCAPE_HTML == "True":
ESCAPE_HTML = True
elif ESCAPE_HTML == "False":
ESCAPE_HTML = False
else:
print("ERROR: ESCAPE_HTML must be set to True or False")
exit(1)
ESCAPE_HTML = ESCAPE_HTML and ESCAPE_HTML == "True"
@app.route("/", methods=["GET", "POST"])
def index():