diff options
-rwxr-xr-x | ranger/config/commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 7d690b4a..2450c1c5 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -922,7 +922,8 @@ class eval_(Command): if result and not quiet: p(result) except Exception as err: # pylint: disable=broad-except - p(err) + fm.notify("The error `%s` was caused by evaluating the " + "following code: `%s`" % (err, code), bad=True) class rename(Command): |