Add normal exit in depends if detected python3

This commit is contained in:
Dmitri Bogomolov 2021-01-28 01:17:30 +02:00 committed by Muzahid
parent 9dabd31470
commit dba54841bf
Signed by untrusted user: cis-muzahid
GPG Key ID: 1DC85E7D3AB613EA
1 changed files with 2 additions and 2 deletions

View File

@ -421,8 +421,8 @@ def check_dependencies(verbose=False, optional=False):
if sys.hexversion >= 0x3000000:
logger.error(
'PyBitmessage does not support Python 3+. Python 2.7.4'
' or greater is required.')
has_all_dependencies = False
' or greater is required. Python 2.7.18 is recommended.')
sys.exit()
check_functions = [check_ripemd160, check_sqlite, check_openssl]
if optional: