From 2ac9ea0f6a3cda12868540ac25e61a59907d02d5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 9 Mar 2014 19:30:44 +0100 Subject: [PATCH] Kinda fix get command --- qutebrowser/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index 65acb218e..6d68f5257 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -85,7 +85,6 @@ class QuteBrowser(QApplication): self._quit_status = {} self._timers = [] self._shutting_down = False - self.config = config.config sys.excepthook = self._exception_hook @@ -101,6 +100,7 @@ class QuteBrowser(QApplication): else: confdir = self._args.confdir config.init(confdir) + self.config = config.config self.commandparser = CommandParser() self.searchparser = SearchParser()