Skip to content

Commit b0a8eaa

Browse files
authored
Merge pull request kivy#900 from inclement/improve_modules_log
Improved log for missing python modules
2 parents 2b3e34b + 9f02aa4 commit b0a8eaa

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 = 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)