From 1540c752d33d3241901b550d8322c40303d6f49e Mon Sep 17 00:00:00 2001 From: Avasam Date: Wed, 20 Nov 2024 15:50:27 -0500 Subject: [PATCH] typo --- setuptools/command/bdist_egg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index 0582a131f4..e320205289 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -266,7 +266,7 @@ def zap_pyfiles(self) -> None: pattern = r'(?P.+)\.(?P[^.]+)\.pyc' m = re.match(pattern, name) - # We shouldn't ind any non-pyc files in __pycache__ + # We shouldn't find any non-pyc files in __pycache__ assert m is not None path_new = os.path.join(base, os.pardir, m.group('name') + '.pyc') log.info("Renaming file from [%s] to [%s]" % (path_old, path_new))