The error.html template could not be found! Please check your qutebrowser installation
+ %ERROR%
+
+
+
+
+
"""
@@ -93,7 +85,7 @@ class Loader(jinja2.BaseLoader):
source = utils.read_file(path)
except OSError as e:
source = html_fallback.replace("%ERROR%", html.escape(str(e)))
- log.misc.error("The error.html template could not be found" + path)
+ log.misc.error("The error.html template could not be found at " + path)
# Currently we don't implement auto-reloading, so we always return True
# for up-to-date.
return source, path, lambda: True