diff options
-rwxr-xr-x | ranger/config/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 314d31c2..8f606cbe 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1721,7 +1721,7 @@ class yank(Command): process.communicate(input=input_argument) def get_selection_attr(self, attr): - return [getattr(file, attr) for file in + return [getattr(item, attr) for item in self.fm.thistab.get_selection()] def tab(self, tabnum): |