summaryrefslogtreecommitdiff
path: root/pecan/commands/serve.py
diff options
context:
space:
mode:
Diffstat (limited to 'pecan/commands/serve.py')
-rw-r--r--pecan/commands/serve.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/pecan/commands/serve.py b/pecan/commands/serve.py
index 9dd431e..0d1b14a 100644
--- a/pecan/commands/serve.py
+++ b/pecan/commands/serve.py
@@ -1,6 +1,7 @@
"""
Serve command for Pecan.
"""
+from __future__ import print_function
import os
import sys
import time
@@ -42,7 +43,7 @@ class ServeCommand(BaseCommand):
DirModifiedEvent
)
- print 'Monitoring for changes...'
+ print('Monitoring for changes...')
self.create_subprocess()
parent = self
@@ -101,13 +102,15 @@ class ServeCommand(BaseCommand):
host, port = conf.server.host, int(conf.server.port)
srv = make_server(host, port, app)
- print 'Starting server in PID %s' % os.getpid()
+ print('Starting server in PID %s' % os.getpid())
if host == '0.0.0.0':
- print 'serving on 0.0.0.0:%s, view at http://127.0.0.1:%s' % \
+ print(
+ 'serving on 0.0.0.0:%s, view at http://127.0.0.1:%s' %
(port, port)
+ )
else:
- print "serving on http://%s:%s" % (host, port)
+ print("serving on http://%s:%s" % (host, port))
try:
srv.serve_forever()