From 434a9043354a25f86786f0dbfc97658f618e3ec0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 14 Feb 2014 07:50:31 +0100 Subject: [PATCH] Add icon= to error html format() --- qutebrowser/widgets/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/widgets/browser.py b/qutebrowser/widgets/browser.py index 89f427de2..106c439da 100644 --- a/qutebrowser/widgets/browser.py +++ b/qutebrowser/widgets/browser.py @@ -579,5 +579,5 @@ class BrowserPage(QWebPage): urlstr = urlutils.urlstring(info.url) title = "Error loading page: {}".format(urlstr) errpage.content = read_file('html/error.html').format( - title=title, url=urlstr, error=info.errorString) + title=title, url=urlstr, error=info.errorString, icon='') return True