Fix compatibility with py<3.6
This commit is contained in:
parent
73ba70eb83
commit
6f8cd86417
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ def editor(value):
|
||||||
# Check editor executable exists
|
# Check editor executable exists
|
||||||
exe = shutil.which(value)
|
exe = shutil.which(value)
|
||||||
if not exe:
|
if not exe:
|
||||||
raise ArgumentTypeError(f"Editor `{value}` not found")
|
raise ArgumentTypeError("Editor `{}` not found".format(value))
|
||||||
|
|
||||||
return exe
|
return exe
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue