From dd9d6264c7cc1fd7d0c891fe27ecfeb067c329aa Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 6 Feb 2017 13:09:39 +0100 Subject: [PATCH] Fix search/replace fail --- qutebrowser/browser/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 2b6e0ca81..f07f58ee7 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -371,7 +371,7 @@ class CommandDispatcher: directory = os.path.dirname(filename) if directory and not os.path.exists(directory): os.mkdir(directory) - tab.printing.to_filename(filename) + tab.printing.to_pdf(filename) log.misc.debug("Print to file: {}".format(filename)) def _print(self, tab):