diff options
author | hut <hut@lavabit.com> | 2011-10-08 21:18:07 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-08 21:18:07 +0200 |
commit | 1ae56f494994f368b0948191f524398cfb3ad328 (patch) | |
tree | 8bbc8bee8c9ece8c39f0987c08f1f03d28c8cda8 | |
parent | 070698886dbe2abfba7b2d9464dc01bf1555b3da (diff) | |
download | ranger-1ae56f494994f368b0948191f524398cfb3ad328.tar.gz |
defaults/apps: fixed entry for feh
-rw-r--r-- | ranger/defaults/apps.py | 2 |
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 |