summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docker/storperf-reporting/src/app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/storperf-reporting/src/app.py b/docker/storperf-reporting/src/app.py
index 9bd1a04..1c48eb0 100644
--- a/docker/storperf-reporting/src/app.py
+++ b/docker/storperf-reporting/src/app.py
@@ -130,12 +130,12 @@ def file_not_found():
@app.route('/reporting/3rd_party/js/<path:path>')
def js(path):
- return send_from_directory('static/js/', path)
+ return send_from_directory('static/3rd_party/js/', path)
@app.route('/reporting/3rd_party/css/<path:path>')
def css(path):
- return send_from_directory('static/css/', path)
+ return send_from_directory('static/3rd_party/css/', path)
@app.route('/reporting/images/<path:path>')