diff options
author | hut <hut@lavabit.com> | 2011-10-10 19:59:04 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-10 19:59:04 +0200 |
commit | 57e1014a2d887700846d91e555dd3d364c288ab2 (patch) | |
tree | b7350c36e707fee02af09ae10068a79360d89613 | |
parent | 97beb87a99c106402e43b6f0e43c8cec9bd26107 (diff) | |
download | ranger-57e1014a2d887700846d91e555dd3d364c288ab2.tar.gz |
core.actions: shortened long line
-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. |