We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c720d commit c61c819Copy full SHA for c61c819
sanic_ext/bootstrap.py
@@ -82,7 +82,6 @@ def __init__(
82
self.config = add_fallback_config(app, config, **kwargs)
83
84
extensions = extensions or []
85
- extensions.extend(Extend._pre_registry)
86
if built_in_extensions:
87
extensions.extend(
88
[
@@ -96,6 +95,7 @@ def __init__(
96
95
97
if TEMPLATING_ENABLED:
98
extensions.append(TemplatingExtension)
+ extensions.extend(Extend._pre_registry)
99
100
started = set()
101
for ext in extensions:
setup.cfg
@@ -1,6 +1,6 @@
1
[metadata]
2
name = sanic-ext
3
-version = 22.9.0
+version = 22.9.1
4
url = http://github.com/sanic-org/sanic-ext/
5
license = MIT
6
author = Sanic Community
0 commit comments