From 5023fafd265add111b29baca59b07f140daf75b7 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Sun, 8 Oct 2023 12:52:53 -0700 Subject: [PATCH] support python 3.12 Python 3.12 has removed `distutils`: https://docs.python.org/3.12/whatsnew/3.12.html#removed --- editor.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/editor.py b/editor.py index 39cc942..54a3760 100755 --- a/editor.py +++ b/editor.py @@ -62,7 +62,10 @@ def get_editor(): # the user explicitly apt-get install python3-distutils. With the # import here it will only break if the code is utilizing the # inquirer editor prompt. - from distutils.spawn import find_executable + try: + from distutils.spawn import find_executable + except ImportError: + from shutil import which as find_executable # Get the editor from the environment. Prefer VISUAL to EDITOR editor = os.environ.get('VISUAL') or os.environ.get('EDITOR')