diff options
| author | Atsushi Odagiri <aodagx@gmail.com> | 2012-02-07 06:50:02 -0800 |
|---|---|---|
| committer | Atsushi Odagiri <aodagx@gmail.com> | 2012-02-07 06:50:02 -0800 |
| commit | d4ac1f226fcfe58fef22f73ef8460eceea9dd175 (patch) | |
| tree | 1f5c9bad011a11b68c308fe6ab91adfc97368ae3 | |
| parent | dfcac9a752289ed00567f71c92b060376a4eb809 (diff) | |
| download | pastedeploy-git-d4ac1f226fcfe58fef22f73ef8460eceea9dd175.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_tmpl | 3 |
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 |
