diff options
| author | Michael Merickel <michael@merickel.org> | 2018-10-18 20:52:30 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2018-10-18 20:54:34 -0500 |
| commit | aff6ee3c87a7a3f114e9b611b22c9dd41d79614a (patch) | |
| tree | 4f336f23737922726a0111f707cae69f48d1e447 /src | |
| parent | d579f2104de139e0b0fc5d6c81aabb2f826e5e54 (diff) | |
| download | pyramid-aff6ee3c87a7a3f114e9b611b22c9dd41d79614a.tar.gz pyramid-aff6ee3c87a7a3f114e9b611b22c9dd41d79614a.tar.bz2 pyramid-aff6ee3c87a7a3f114e9b611b22c9dd41d79614a.zip | |
leave a shim in for pyramid_zcml compatibility
Diffstat (limited to 'src')
| -rw-r--r-- | src/pyramid/config/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pyramid/config/__init__.py b/src/pyramid/config/__init__.py index 5cff20754..00c3e6a02 100644 --- a/src/pyramid/config/__init__.py +++ b/src/pyramid/config/__init__.py @@ -39,7 +39,7 @@ from pyramid.threadlocal import manager from pyramid.util import WeakOrderedSet, object_description -from pyramid.config.actions import action_method +from pyramid.config.actions import action_method, ActionState from pyramid.config.predicates import not_ from pyramid.config.actions import ActionConfiguratorMixin @@ -69,6 +69,8 @@ PHASE1_CONFIG = PHASE1_CONFIG # api PHASE2_CONFIG = PHASE2_CONFIG # api PHASE3_CONFIG = PHASE3_CONFIG # api +ActionState = ActionState # bw-compat for pyramid_zcml + class Configurator( ActionConfiguratorMixin, |
