From 9b59368b06c60054912660b22d00f502f253ae0b Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 15 Aug 2018 22:12:01 -0400 Subject: [PATCH] Fix for #85 --- bazarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr.py b/bazarr.py index 37b212356..9e2a5a814 100644 --- a/bazarr.py +++ b/bazarr.py @@ -63,7 +63,7 @@ from update_modules import * from bottle import route, run, template, static_file, request, redirect, response, HTTPError import bottle -bottle.TEMPLATE_PATH.insert(0, os.path.join(config_dir, 'views/')) +bottle.TEMPLATE_PATH.insert(0, os.path.join(os.path.dirname(__file__), 'views/')) bottle.debug(True) bottle.TEMPLATES.clear()