summaryrefslogtreecommitdiff
path: root/paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl')
-rw-r--r--paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl5
1 files changed, 3 insertions, 2 deletions
diff --git a/paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl b/paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl
index ae55f97..6df5a6e 100644
--- a/paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl
+++ b/paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl
@@ -1,6 +1,8 @@
import cgi
+
from paste.deploy import CONFIG
+
def application(environ, start_response):
# Note that usually you wouldn't be writing a pure WSGI
# application, you might be using some framework or
@@ -19,5 +21,4 @@ def application(environ, start_response):
% (key, cgi.escape(repr(value))))
content.append('</table></body></html>')
return content
-
-
+ \ No newline at end of file