# HG changeset patch # User Ludovic Chabant # Date 1519014825 28800 # Node ID 05fba0b8e21ccdc13af26ed7b4747b933d8c6e3c # Parent 6f26e83dfced07220efb09ee5dba0f27d3d3c8e5 data: Use the root URL for the debugger assets. diff -r 6f26e83dfced -r 05fba0b8e21c piecrust/data/debug.py --- a/piecrust/data/debug.py Sun Feb 18 20:33:04 2018 -0800 +++ b/piecrust/data/debug.py Sun Feb 18 20:33:45 2018 -0800 @@ -79,8 +79,11 @@ print('', file=output) - print('', - file=output) + root_url = page.app.config.get('site/root') + print( + '' % + root_url, + file=output) def build_var_debug_info(data, var_path=None):