summaryrefslogtreecommitdiff
path: root/plinth.py
diff options
context:
space:
mode:
authorNick Daly <nick.m.daly@gmail.com>2012-10-06 14:41:03 -0700
committerNick Daly <nick.m.daly@gmail.com>2012-10-06 14:41:03 -0700
commitc9fbe4d3d800746e8bacd66ae904dfbfb8aed223 (patch)
tree4e3540abd1f84bd13e5a734d18c92638f2f13b6e /plinth.py
parent3ef8e8bbc25854a699b386d57497dd5c93f20c20 (diff)
parent480aacfac55772128e18366aa3870d69bc636b0e (diff)
Merge pull request #5 from jvalleroy/master
Merge James Valleroy's "small bugfix"
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()