Merge pull request #5 from jvalleroy/master

Merge James Valleroy's "small bugfix"
This commit is contained in:
Nick Daly 2012-10-06 14:41:03 -07:00
commit c9fbe4d3d8
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()