summaryrefslogtreecommitdiff
path: root/pecan/deploy.py
diff options
context:
space:
mode:
authorRyan Petrello <lists@ryanpetrello.com>2012-03-13 14:16:08 -0700
committerRyan Petrello <lists@ryanpetrello.com>2012-03-13 16:21:44 -0700
commitbded674abd5afbf2bb10b30fa820d7002a0b42f4 (patch)
tree47c912f7b1b1bec1f1696f00b833195481c81743 /pecan/deploy.py
parent02a80731c48feb814dce727dd95db1510a7eb08e (diff)
downloadpecan-bded674abd5afbf2bb10b30fa820d7002a0b42f4.tar.gz
Cleaning up cruft, simplifying default config, and improving docs.
Diffstat (limited to 'pecan/deploy.py')
-rw-r--r--pecan/deploy.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pecan/deploy.py b/pecan/deploy.py
index 3559e99..08019f9 100644
--- a/pecan/deploy.py
+++ b/pecan/deploy.py
@@ -2,4 +2,8 @@ from core import load_app
def deploy(config):
+ """
+ Given a config (dictionary of relative filename), returns a configured
+ WSGI app.
+ """
return load_app(config)