summaryrefslogtreecommitdiff
path: root/plinth.py
diff options
context:
space:
mode:
authorJames Valleroy <james.valleroy@gmail.com>2012-10-04 21:39:12 -0400
committerJames Valleroy <james.valleroy@gmail.com>2012-10-04 21:39:12 -0400
commit480aacfac55772128e18366aa3870d69bc636b0e (patch)
tree4e3540abd1f84bd13e5a734d18c92638f2f13b6e /plinth.py
parent3ef8e8bbc25854a699b386d57497dd5c93f20c20 (diff)
Fix host cfg and print on startup
Diffstat (limited to 'plinth.py')
-rwxr-xr-xplinth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plinth.py b/plinth.py
index 5cdce88..28f7207 100755
--- a/plinth.py
+++ b/plinth.py
@@ -146,7 +146,7 @@ def setup():
def main():
setup()
- print "localhost %d" % cfg.port
+ print "%s %d" % (cfg.host, cfg.port)
cherrypy.engine.start()
cherrypy.engine.block()