From fb655fb0c3ddbcca3026b5fd851c97fa1e797637 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 20:43:32 -0400 Subject: [PATCH] Use absolute path for template --- bazarr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bazarr.py b/bazarr.py index 296a76c57..e7740e246 100644 --- a/bazarr.py +++ b/bazarr.py @@ -2,6 +2,7 @@ from bottle import route, run, template, static_file, request, redirect import bottle bottle.debug(True) bottle.TEMPLATES.clear() +bottle.TEMPLATE_PATH.insert(0,os.path.join(os.path.dirname(__file__), 'views/')) import sqlite3 import os