mirror of https://github.com/ARMmbed/mbed-os.git
Fix incorrect comment in tools/cmake/python_packagecheck.py
Co-authored-by: Hugues Kamba <41612201+hugueskamba@users.noreply.github.com>pull/14205/head
parent
e61a45a0c3
commit
8eca0cffb2
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
#file which is invoked by the cmake build system to check if all necessary python packages are installed.
|
"""Script to check if a Python module/package is installed."""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -10,4 +10,4 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
exit(0)
|
exit(0)
|
||||||
|
|
Loading…
Reference in New Issue