diff options
author | ideal <idealities@gmail.com> | 2021-03-08 15:27:56 +0800 |
---|---|---|
committer | ideal <idealities@gmail.com> | 2021-03-08 15:27:56 +0800 |
commit | 6196a6ac6c67b1fd8d31cce3c75cc8750a42a7fc (patch) | |
tree | c18a9f011fdbb2c68ac4e79ede6c51b6438e0d2d /ranger | |
parent | 78034ec77a510f466901e40180d76578df120d35 (diff) | |
download | ranger-6196a6ac6c67b1fd8d31cce3c75cc8750a42a7fc.tar.gz |
Rephrase message if man is not installed
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/core/actions.py | 2 |
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) |