From 3f9c073b4be0c827d5f328ef63c69ffe7341572c Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 18 Aug 2021 13:57:29 +0200 Subject: [PATCH] build_library: Fix some typos --- build_library/generate_au_zip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library/generate_au_zip.py b/build_library/generate_au_zip.py index 2a660a91ef..f047d10af9 100755 --- a/build_library/generate_au_zip.py +++ b/build_library/generate_au_zip.py @@ -82,7 +82,7 @@ def _SplitAndStrip(data): Args: data: list of libraries from ldd output Returns: - list of libararies that we should copy + list of libraries that we should copy """ return_list = [] @@ -176,7 +176,7 @@ def CopyRequiredFiles(dest_files_root, allow_list): lib_dir = os.path.join(dest_files_root, LIB_DIR) os.mkdir(lib_dir) for file_name in libraries: - logging.debug('Copying file %s to %s', file_name, lib_dir) + logging.debug('Copying file %s to %s', file_name, lib_dir) try: shutil.copy2(file_name, lib_dir) except EnvironmentError: