summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/defaults/apps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py
index 4f90c807..10f0b3cf 100644
--- a/ranger/defaults/apps.py
+++ b/ranger/defaults/apps.py
@@ -136,7 +136,7 @@ class CustomApplications(Applications):
 	def app_feh(self, c):
 		c.flags += 'd'
 		if c.mode is 0 and len(c.files) is 1: # view all files in the cwd
-			images = (f.basename for f in self.fm.env.cwd.files if f.image)
+			images = [f.basename for f in self.fm.env.cwd.files if f.image]
 			return 'feh', '--start-at', c.file.basename, images
 		return 'feh', c