From 4765480ac1d1c375f3f812009e61691c9238d846 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Wed, 27 Mar 2024 14:36:21 +0000 Subject: [PATCH] Replace old references to 'mbedtls_dev' The module has been renamed to 'framework_dev'. Signed-off-by: David Horstmann --- scripts/audit-validity-dates.py | 4 ++-- scripts/framework_dev/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/audit-validity-dates.py b/scripts/audit-validity-dates.py index 96b705a28..29ca88944 100755 --- a/scripts/audit-validity-dates.py +++ b/scripts/audit-validity-dates.py @@ -29,8 +29,8 @@ from cryptography import x509 from generate_test_code import FileWrapper import scripts_path # pylint: disable=unused-import -from mbedtls_dev import build_tree -from mbedtls_dev import logging_util +from framework_dev import build_tree +from framework_dev import logging_util def check_cryptography_version(): match = re.match(r'^[0-9]+', cryptography.__version__) diff --git a/scripts/framework_dev/__init__.py b/scripts/framework_dev/__init__.py index 15b0d60dd..df48c282c 100644 --- a/scripts/framework_dev/__init__.py +++ b/scripts/framework_dev/__init__.py @@ -1,3 +1,3 @@ -# This file needs to exist to make mbedtls_dev a package. +# This file needs to exist to make framework_dev a package. # Among other things, this allows modules in this directory to make # relative imports.