summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-06-07 20:05:40 +0200
committerhut <hut@lavabit.com>2013-06-07 20:07:19 +0200
commit542e313af21aa2913a724a3ee98f9d8459da22b9 (patch)
tree0a0173a6c2d2dfcc9c363c4a32a9f3fecc3cb6b2
parent1f44e918572ce45618f84aef6e534d6afbc1be04 (diff)
downloadranger-542e313af21aa2913a724a3ee98f9d8459da22b9.tar.gz
core.fm: fix shell escaping when using feh + "open_all_images"
-rw-r--r--ranger/core/fm.py2
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: