diff options
-rw-r--r-- | ranger/core/actions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index a109a1d6..d0e21fbc 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -211,7 +211,8 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): if ranger.arg.debug: raise else: - self.notify('Error in line `%s\':\n %s' % (line, str(e)), bad=True) + self.notify('Error in line `%s\':\n %s' % + (line, str(e)), bad=True) def execute_file(self, files, **kw): """Execute a file. |