8000 Improved log for missing python modules · modulexcite/python-for-android@9f02aa4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9f02aa4

Browse files
committed
Improved log for missing python modules
1 parent 4a7947e commit 9f02aa4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pythonforandroid/toolchain.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,13 @@ def check_python_dependencies():
3535
import_module(module)
3636
except ImportError:
3737
if version is None:
38-
print('ERROR: The {} module could not be found, please '
38+
print('ERROR: The {} Python module could not be found, please '
3939
'install it.'.format(module))
4040
ok 69A8 = False
4141
else:
42-
print('ERROR: The {} module could not be found, please install '
43-
'version {} or higher'.format(module, version))
42+
print('ERROR: The {} Python module could not be found, '
43+
'please install version {} or higher'.format(
44+
module, version))
4445
ok = False
4546
else:
4647
if version is None:

0 commit comments

Comments
 (0)
0