Merge branch 'master' of github.com:NickDaly/Plinth

This commit is contained in:
Nick Daly 2012-10-07 20:37:36 -05:00
commit c129254e8a
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

@ -148,7 +148,7 @@ def setup():
def main():
setup()
print "localhost %d" % cfg.port
print "%s %d" % (cfg.host, cfg.port)
cherrypy.engine.start()
cherrypy.engine.block()