diff options
author | hut <hut@lavabit.com> | 2013-06-07 20:05:40 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-06-07 20:07:19 +0200 |
commit | 542e313af21aa2913a724a3ee98f9d8459da22b9 (patch) | |
tree | 0a0173a6c2d2dfcc9c363c4a32a9f3fecc3cb6b2 | |
parent | 1f44e918572ce45618f84aef6e534d6afbc1be04 (diff) | |
download | ranger-542e313af21aa2913a724a3ee98f9d8459da22b9.tar.gz |
core.fm: fix shell escaping when using feh + "open_all_images"
-rw-r--r-- | ranger/core/fm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/fm.py b/ranger/core/fm.py index 918d1de2..452a9d42 100644 --- a/ranger/core/fm.py +++ b/ranger/core/fm.py @@ -145,7 +145,7 @@ class FM(Actions, SignalDispatcher): if command[0:4] == 'feh ': new_command = command.replace("feh ", - "feh --start-at '%s' " % \ + "feh --start-at %s " % \ shell_quote(self.thisfile.basename), 1) if new_command: |