summaryrefslogtreecommitdiff
path: root/paste/deploy/paster_templates.py
diff options
context:
space:
mode:
Diffstat (limited to 'paste/deploy/paster_templates.py')
-rw-r--r--paste/deploy/paster_templates.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/paste/deploy/paster_templates.py b/paste/deploy/paster_templates.py
index 25be21b..9c5f942 100644
--- a/paste/deploy/paster_templates.py
+++ b/paste/deploy/paster_templates.py
@@ -4,6 +4,8 @@ import os
from paste.script.templates import Template
+from paste.deploy.compat import print_
+
class PasteDeploy(Template):
@@ -28,7 +30,7 @@ class PasteDeploy(Template):
' main = %(package)s.wsgiapp:make_app\n') % vars,
indent=False)
if command.verbose:
- print '*' * 72
- print '* Run "paster serve docs/devel_config.ini" to run the sample application'
- print '* on http://localhost:8080'
- print '*' * 72
+ print_('*' * 72)
+ print_('* Run "paster serve docs/devel_config.ini" to run the sample application')
+ print_('* on http://localhost:8080')
+ print_('*' * 72)