Fix subprocess.check_call

python3android
Alexx Saver 5 years ago committed by GitHub
parent b0446ab4ab
commit 50ee7fa740
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -363,7 +363,7 @@ def check_curses():
import subprocess
try:
subprocess.check_call('which dialog')
subprocess.check_call(['which', 'dialog'])
except subprocess.CalledProcessError:
logger.error(
'Curses requires the `dialog` command to be installed as well as'

Loading…
Cancel
Save