diff options
-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) |