From c1fccc1d1f174f69948638e4d2e7371c42ccfccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Sat, 21 Oct 2017 21:25:31 -0400 Subject: [PATCH] Test --- bazarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr.py b/bazarr.py index b8abb20b0..30b147f4d 100644 --- a/bazarr.py +++ b/bazarr.py @@ -68,7 +68,7 @@ configure_logging() @route(base_url + '/static/:path#.+#', name='static') def static(path): - return static_file(path, root='static') + return static_file(path, root=os.path.join(os.path.dirname(__file__), 'static')) @route(base_url + '/image_proxy/', method='GET') def image_proxy(url):