# HG changeset patch # User drewp # Date 1556261542 25200 # Node ID 35090659d4147bc01f9963a0e544615573d02346 # Parent f2159312b0e726403fc502f70510976c9cf407e5 fix /static path dir Ignore-this: 464d6e4dfc28f03240fde8cf1f047e41 darcs-hash:a16cad68206967fd7e85e2fe66d07e5cba279b6f diff -r f2159312b0e7 -r 35090659d414 service/piNode/piNode.py --- a/service/piNode/piNode.py Thu Apr 25 23:38:47 2019 -0700 +++ b/service/piNode/piNode.py Thu Apr 25 23:52:22 2019 -0700 @@ -324,7 +324,7 @@ reactor.listenTCP(9059, cyclone.web.Application([ (r"/()", cyclone.web.StaticFileHandler, { "path": static, "default_filename": "index.html"}), - (r'/static/(.*)', cyclone.web.StaticFileHandler, {"path": "static"}), + (r'/static/(.*)', cyclone.web.StaticFileHandler, {"path": static}), (r'/stats/(.*)', StatsHandler, {'serverName': 'piNode'}), (r'/boards', Boards), (r"/graph", CycloneGraphHandler, {'masterGraph': masterGraph}),