about summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorideal <idealities@gmail.com>2021-03-08 15:27:56 +0800
committerideal <idealities@gmail.com>2021-03-08 15:27:56 +0800
commit6196a6ac6c67b1fd8d31cce3c75cc8750a42a7fc (patch)
treec18a9f011fdbb2c68ac4e79ede6c51b6438e0d2d /ranger
parent78034ec77a510f466901e40180d76578df120d35 (diff)
downloadranger-6196a6ac6c67b1fd8d31cce3c75cc8750a42a7fc.tar.gz
Rephrase message if man is not installed
Diffstat (limited to 'ranger')
-rw-r--r--ranger/core/actions.py2
1 files changed, 1 insertions, 1 deletions
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)