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):