summaryrefslogtreecommitdiff
path: root/paste
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-10-20 19:12:40 +0000
committerianb <devnull@localhost>2006-10-20 19:12:40 +0000
commit13a6d557d777ee04d1af99ddaa54f221ccf5542e (patch)
tree8b31147fd865911adc006d12695aa37523d87273 /paste
parentf980dd5eab66283b7e42c7ed6e02e180fecd884d (diff)
downloadpastedeploy-13a6d557d777ee04d1af99ddaa54f221ccf5542e.tar.gz
Add docstring to config middleware entry point
Diffstat (limited to 'paste')
-rw-r--r--paste/deploy/config.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/paste/deploy/config.py b/paste/deploy/config.py
index 04a1448..9a07660 100644
--- a/paste/deploy/config.py
+++ b/paste/deploy/config.py
@@ -180,6 +180,8 @@ def make_config_filter(app, global_conf, **local_conf):
conf.update(local_conf)
return ConfigMiddleware(app, conf)
+make_config_middleware = ConfigMiddleware.__doc__
+
class PrefixMiddleware(object):
"""Translate a given prefix into a SCRIPT_NAME for the filtered
application.