diff options
-rw-r--r-- | ranger/gui/widgets/console.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py index 92983da6..ecf6f557 100644 --- a/ranger/gui/widgets/console.py +++ b/ranger/gui/widgets/console.py @@ -305,7 +305,8 @@ class Console(Widget): command_class = self._get_cmd_class() except KeyError: if not quiet: - self.fm.notify("Invalid command! Press ? for help.", bad=True) + error = "Command not found: `%s'" % self.line.split()[0] + self.fm.notify(error, bad=True) except: return None else: |