From e63d11527df606f9ca10ad7a104501f3ab96e3dc Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 8 Oct 2017 14:42:42 +0200 Subject: [PATCH] Get rid of CommandRunner.run_safely_init All messages are queued nowadays. --- qutebrowser/app.py | 2 +- qutebrowser/commands/runners.py | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index b2654e2ba..7395adc0c 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -280,7 +280,7 @@ def process_pos_args(args, via_ipc=False, cwd=None, target_arg=None): win_id = mainwindow.get_window(via_ipc, force_tab=True) log.init.debug("Startup cmd {!r}".format(cmd)) commandrunner = runners.CommandRunner(win_id) - commandrunner.run_safely_init(cmd[1:]) + commandrunner.run_safely(cmd[1:]) elif not cmd: log.init.debug("Empty argument") win_id = mainwindow.get_window(via_ipc, force_window=True) diff --git a/qutebrowser/commands/runners.py b/qutebrowser/commands/runners.py index 9d480cc5d..0f9e5dd9f 100644 --- a/qutebrowser/commands/runners.py +++ b/qutebrowser/commands/runners.py @@ -322,15 +322,3 @@ class CommandRunner(QObject): self.run(text, count) except cmdexc.Error as e: message.error(str(e), stack=traceback.format_exc()) - - @pyqtSlot(str, int) - def run_safely_init(self, text, count=None): - """Run a command and display exceptions in the statusbar. - - Contrary to run_safely, error messages are queued so this is more - suitable to use while initializing. - """ - try: - self.run(text, count) - except cmdexc.Error as e: - message.error(str(e), stack=traceback.format_exc())