From 4179996fefd272cc0c893b88ad17c010fa037768 Mon Sep 17 00:00:00 2001 From: spaette Date: Wed, 11 Sep 2024 13:05:04 -0500 Subject: Fix typos --- unittests/baseplatformtests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unittests/baseplatformtests.py') diff --git a/unittests/baseplatformtests.py b/unittests/baseplatformtests.py index 72ebeafe7..377032192 100644 --- a/unittests/baseplatformtests.py +++ b/unittests/baseplatformtests.py @@ -496,13 +496,13 @@ class BasePlatformTests(TestCase): ensures that the copied tree is deleted after running. - :param srcdir: The locaiton of the source tree to copy + :param srcdir: The location of the source tree to copy :return: The location of the copy """ dest = tempfile.mkdtemp() self.addCleanup(windows_proof_rmtree, dest) - # shutil.copytree expects the destinatin directory to not exist, Once + # shutil.copytree expects the destination directory to not exist, Once # python 3.8 is required the `dirs_exist_ok` parameter negates the need # for this dest = os.path.join(dest, 'subdir') -- cgit v1.2.3