From 6196a6ac6c67b1fd8d31cce3c75cc8750a42a7fc Mon Sep 17 00:00:00 2001 From: ideal Date: Mon, 8 Mar 2021 15:27:56 +0800 Subject: Rephrase message if man is not installed --- ranger/core/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ranger/core/actions.py b/ranger/core/actions.py index c458da11..d7a564c2 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -975,7 +975,7 @@ class Actions( # pylint: disable=too-many-instance-attributes,too-many-public-m return process = self.run(['man', 'ranger']) if process is None: - self.notify("Show manpage failed, check if man is installed", bad=True) + self.notify("Failed to show man page, check if man is installed", bad=True) return if process.poll() == 16: self.notify("Could not find manpage.", bad=True) -- cgit v1.2.3