Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Nov 20, 2024
1 parent 59fc3b4 commit 1540c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptools/command/bdist_egg.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def zap_pyfiles(self) -> None:

pattern = r'(?P<name>.+)\.(?P<magic>[^.]+)\.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))
Expand Down

0 comments on commit 1540c75

Please sign in to comment.