about summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index adfbe94d..c458da11 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -974,6 +974,9 @@ class Actions(  # pylint: disable=too-many-instance-attributes,too-many-public-m
             if process.poll() != 16:
                 return
         process = self.run(['man', 'ranger'])
+        if process is None:
+            self.notify("Show manpage failed, check if man is installed", bad=True)
+            return
         if process.poll() == 16:
             self.notify("Could not find manpage.", bad=True)