Kinda fix get command

This commit is contained in:
Florian Bruhin 2014-03-09 19:30:44 +01:00
parent f0f8168ed2
commit 2ac9ea0f6a

View File

@ -85,7 +85,6 @@ class QuteBrowser(QApplication):
self._quit_status = {} self._quit_status = {}
self._timers = [] self._timers = []
self._shutting_down = False self._shutting_down = False
self.config = config.config
sys.excepthook = self._exception_hook sys.excepthook = self._exception_hook
@ -101,6 +100,7 @@ class QuteBrowser(QApplication):
else: else:
confdir = self._args.confdir confdir = self._args.confdir
config.init(confdir) config.init(confdir)
self.config = config.config
self.commandparser = CommandParser() self.commandparser = CommandParser()
self.searchparser = SearchParser() self.searchparser = SearchParser()