Fix host cfg and print on startup

This commit is contained in:
James Valleroy 2012-10-04 21:39:12 -04:00
parent 3ef8e8bbc2
commit 480aacfac5
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ users_dir = os.path.join(data_dir, "users")
product_name = "Plinth"
box_name = "FreedomBox"
host = 127.0.0.1
host = "127.0.0.1"
port = 8000
## Do not edit below this line ##

View File

@ -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()