about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xranger/config/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index c136db56..d177203a 100755
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -1585,7 +1585,7 @@ class filter_stack(Command):
                 + self.fm.thisdir.filter_stack[:-rotate_by]
             )
         elif subcommand == "show":
-            stack = map(str, self.fm.thisdir.filter_stack)
+            stack = list(map(str, self.fm.thisdir.filter_stack))
             pager = self.fm.ui.open_pager()
             pager.set_source(["Filter stack: "] + stack)
             pager.move(to=100, percentage=True)