From de65ad1e2991ea87a878483a010cfaf3d4600702 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 9 Dec 2020 10:03:31 +1300 Subject: [PATCH 1/1] use py3 for mimetype detection --- .mutt/bgrun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mutt/bgrun b/.mutt/bgrun index 890b50e..c19920f 100755 --- a/.mutt/bgrun +++ b/.mutt/bgrun @@ -77,7 +77,7 @@ notify_output() { } guess_extension() { - python -c "import mimetypes; print(mimetypes.guess_extension('$1'))" + python3 -c "import mimetypes; print(mimetypes.guess_extension('$1'))" } get_file() { -- 2.39.2