fix werkzeug server header

This commit is contained in:
Kenneth Kehl
2025-02-03 14:38:43 -08:00
parent e65a9d87d4
commit fa0d308eff
5 changed files with 5 additions and 21 deletions

View File

@@ -2,9 +2,12 @@
from __future__ import print_function
from flask import Flask
from werkzeug.serving import WSGIRequestHandler
from app import create_app
WSGIRequestHandler.version_string = lambda self: "SecureServer"
application = Flask("app")
create_app(application)