diff options
author | morpheus65535 <[email protected]> | 2018-08-15 22:12:01 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2018-08-15 22:12:01 -0400 |
commit | 9b59368b06c60054912660b22d00f502f253ae0b (patch) | |
tree | d48d6e37d7f1cdd56b656cb6b8d36750cd470767 /bazarr.py | |
parent | 933e4e413f7923af6f22b67e3ba7b99b74784e30 (diff) | |
download | bazarr-9b59368b06c60054912660b22d00f502f253ae0b.tar.gz bazarr-9b59368b06c60054912660b22d00f502f253ae0b.zip |
Fix for #85
Diffstat (limited to 'bazarr.py')
-rw-r--r-- | bazarr.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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()
|