mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Remove unnecessary try/catch in list_internal_identifiers
The try/catch was used to catch Exceptions and exit with code 1, a legacy from check_names.py which uses the pattern to exit with code 2. But code 1 is the default for the Python runtime anyway, so it is redundant and can be removed. Signed-off-by: Yuto Takano <yuto.takano@arm.com>
This commit is contained in:
@ -44,7 +44,6 @@ def main():
|
|||||||
|
|
||||||
parser.parse_args()
|
parser.parse_args()
|
||||||
|
|
||||||
try:
|
|
||||||
name_check = CodeParser(logging.getLogger())
|
name_check = CodeParser(logging.getLogger())
|
||||||
result = name_check.parse_identifiers([
|
result = name_check.parse_identifiers([
|
||||||
"include/mbedtls/*_internal.h",
|
"include/mbedtls/*_internal.h",
|
||||||
@ -56,9 +55,5 @@ def main():
|
|||||||
with open("identifiers", "w", encoding="utf-8") as f:
|
with open("identifiers", "w", encoding="utf-8") as f:
|
||||||
f.writelines(identifiers)
|
f.writelines(identifiers)
|
||||||
|
|
||||||
except Exception: # pylint: disable=broad-except
|
|
||||||
traceback.print_exc()
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
Reference in New Issue
Block a user