diff options
author | XuehaiPan <XuehaiPan@pku.edu.cn> | 2021-01-05 20:31:31 +0800 |
---|---|---|
committer | XuehaiPan <XuehaiPan@pku.edu.cn> | 2021-01-05 20:50:08 +0800 |
commit | 1ec9d7f5cc4f7ffd9c514616e7ad342e8662cd49 (patch) | |
tree | ea8d9a1188518f764e6be02618d0ac8157596fd6 /ranger | |
parent | 42cb5a521bf9b24eaaf47daed2b45763e704c347 (diff) | |
download | ranger-1ec9d7f5cc4f7ffd9c514616e7ad342e8662cd49.tar.gz |
Fix python versions compatibility in scope.sh
Diffstat (limited to 'ranger')
-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) |