Skip to content

Commit

Permalink
pythongh-130878: Add extra check to prepare_ssl.py (pythonGH-130879)
Browse files Browse the repository at this point in the history
  • Loading branch information
wooffie authored Mar 5, 2025
1 parent 4f62189 commit 2904ec2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PCbuild/prepare_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def copy_includes(makefile, suffix):
try:
os.makedirs(dir)
except OSError:
pass
if not os.path.isdir(dir):
raise
copy_if_different = r'$(PERL) $(SRC_D)\util\copy-if-different.pl'
with open(makefile) as fin:
for line in fin:
Expand Down

0 comments on commit 2904ec2

Please sign in to comment.