diff options
author | Toon Nolten <toon.nolten@student.kuleuven.be> | 2018-08-20 22:41:13 +0200 |
---|---|---|
committer | Toon Nolten <toon.nolten@student.kuleuven.be> | 2018-08-20 22:41:13 +0200 |
commit | a3c8c7890014a79689566737418cb111185907ac (patch) | |
tree | c1620c9002b53f232a8518aa2751c91526cae681 /ranger | |
parent | 67df2a7d299402306a00a3303f463138abc56734 (diff) | |
download | ranger-a3c8c7890014a79689566737418cb111185907ac.tar.gz |
Check whether tfile is a dir not the entire selection
Was erroneously checking the entire selection for being *a* directory but a list of 1 or more files/directories is obviously not a directory. Fixes #1269
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/core/actions.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 6ddcdd86..443520b1 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -483,13 +483,12 @@ class Actions( # pylint: disable=too-many-instance-attributes,too-many-public-m mode = narg tfile = self.thisfile selection = self.thistab.get_selection() - if selection: - if selection.is_directory: - self.thistab.enter_dir(tfile) - else: - result = self.execute_file(selection, mode=mode) - if result in (False, ASK_COMMAND): - self.open_console('open_with ') + if tfile.is_directory: + self.thistab.enter_dir(tfile) + elif selection: + result = self.execute_file(selection, mode=mode) + if result in (False, ASK_COMMAND): + self.open_console('open_with ') elif direction.vertical() and cwd.files: pos_new = direction.move( direction=direction.down(), |