We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b3e34b + 9f02aa4 commit b0a8eaaCopy full SHA for b0a8eaa
pythonforandroid/toolchain.py
@@ -35,12 +35,13 @@ def check_python_dependencies():
35
import_module(module)
36
except ImportError:
37
if version is None:
38
- print('ERROR: The {} module could not be found, please '
+ print('ERROR: The {} Python module could not be found, please '
39
'install it.'.format(module))
40
ok = False
41
else:
42
- print('ERROR: The {} module could not be found, please install '
43
- 'version {} or higher'.format(module, version))
+ print('ERROR: The {} Python module could not be found, '
+ 'please install version {} or higher'.format(
44
+ module, version))
45
46
47
0 commit comments