summaryrefslogtreecommitdiff
path: root/paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl')
-rw-r--r--paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl5
1 files changed, 3 insertions, 2 deletions
diff --git a/paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl b/paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl
index 57155fc..97decb8 100644
--- a/paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl
+++ b/paste/deploy/paster_templates/paste_deploy/+package+/wsgiapp.py_tmpl
@@ -1,6 +1,8 @@
-import sampleapp
from paste.deploy.config import ConfigMiddleware
+import sampleapp
+
+
def make_app(
global_conf,
# Optional and required configuration parameters
@@ -20,4 +22,3 @@ def make_app(
# configuration dictionary we set up:
app = ConfigMiddleware(app, conf)
return app
-