diff options
-rwxr-xr-x | ranger/data/scope.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/data/scope.sh b/ranger/data/scope.sh index a3e1bedf..16adaf91 100755 --- a/ranger/data/scope.sh +++ b/ranger/data/scope.sh @@ -218,7 +218,8 @@ handle_image() { # { [ "$rar" ] && fn=$(unrar lb -p- -- "${FILE_PATH}"); } || \ # { [ "$zip" ] && fn=$(zipinfo -1 -- "${FILE_PATH}"); } || return # - # fn=$(echo "$fn" | python -c "import sys; import mimetypes as m; \ + # fn=$(echo "$fn" | python -c "from __future__ import print_function; \ + # import sys; import mimetypes as m; \ # [ print(l, end='') for l in sys.stdin if \ # (m.guess_type(l[:-1])[0] or '').startswith('image/') ]" |\ # sort -V | head -n 1) |