8000
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.
1 parent 4a7947e commit 9f02aa4Copy full SHA for 9f02aa4
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