summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Odagiri <aodagx@gmail.com>2012-02-07 06:50:02 -0800
committerAtsushi Odagiri <aodagx@gmail.com>2012-02-07 06:50:02 -0800
commit66ff705822c09c03541c6ac635e80ad2646c76ed (patch)
tree1f5c9bad011a11b68c308fe6ab91adfc97368ae3
parentef4f32a6c97dee059f2f88b259fcb9bfdcfcd84f (diff)
downloadpastedeploy-66ff705822c09c03541c6ac635e80ad2646c76ed.tar.gz
fix invalid import of paste.deploy.Config to paste.deploy.config.Config
-rw-r--r--paste/deploy/paster_templates/paste_deploy/+package+/sampleapp.py_tmpl3
1 files changed, 1 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 6df5a6e..cb49352 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,6 @@
import cgi
-from paste.deploy import CONFIG
+from paste.deploy.config import CONFIG
def application(environ, start_response):
@@ -21,4 +21,3 @@ def application(environ, start_response):
% (key, cgi.escape(repr(value))))
content.append('</table></body></html>')
return content
- \ No newline at end of file