# HG changeset patch # User drewp@bigasterisk.com # Date 1556261542 25200 # Node ID 36e4304762ae5dc63a1efb286baa93c9d4d09ff3 # Parent 98384c3ccd33d78c4cc05fd6ee78db836452f29c fix /static path dir Ignore-this: 464d6e4dfc28f03240fde8cf1f047e41 diff -r 98384c3ccd33 -r 36e4304762ae 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}),