mirror of
https://github.com/Mailu/Mailu.git
synced 2026-06-20 00:16:03 +02:00
Remove dot in blueprint name to prevent critical flask initialisation error.
This commit is contained in:
+2
-2
@@ -54,11 +54,11 @@ def build_app(path):
|
|||||||
@app.context_processor
|
@app.context_processor
|
||||||
def app_context():
|
def app_context():
|
||||||
return dict(
|
return dict(
|
||||||
versions=os.getenv("VERSIONS","master").split(','),
|
versions=os.getenv("VERSIONS","master").split(','),
|
||||||
stable_version = os.getenv("stable_version", "master")
|
stable_version = os.getenv("stable_version", "master")
|
||||||
)
|
)
|
||||||
|
|
||||||
prefix_bp = flask.Blueprint(version, __name__)
|
prefix_bp = flask.Blueprint(version.replace(".", "_"), __name__)
|
||||||
prefix_bp.jinja_loader = jinja2.ChoiceLoader([
|
prefix_bp.jinja_loader = jinja2.ChoiceLoader([
|
||||||
jinja2.FileSystemLoader(os.path.join(path, "templates")),
|
jinja2.FileSystemLoader(os.path.join(path, "templates")),
|
||||||
jinja2.FileSystemLoader(os.path.join(path, "flavors"))
|
jinja2.FileSystemLoader(os.path.join(path, "flavors"))
|
||||||
|
|||||||
Reference in New Issue
Block a user