From bccc3db53f8caaa44d65d8360badfc732b4c4767 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Fri, 23 Oct 2020 18:27:26 +0800 Subject: [PATCH] Add history file in check message. --- core/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/browser.py b/core/browser.py index 2959023..660061f 100644 --- a/core/browser.py +++ b/core/browser.py @@ -1347,7 +1347,7 @@ class BrowserBuffer(Buffer): def _import_chrome_history(self): dbpath = os.path.expanduser(self.emacs_var_dict["eaf-browser-chrome-history-file"]) if not os.path.exists(dbpath): - self.message_to_emacs.emit("The chrome history file not exist, please check your setting.") + self.message_to_emacs.emit("The chrome history file: '{}' not exist, please check your setting.".format(dbpath)) return self.message_to_emacs.emit("Importing from {}...".format(dbpath))