Skip to content

Commit

Permalink
fix shadows name conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Berserker66 committed Nov 25, 2023
1 parent 525d026 commit 84c072e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ def run(self):
context=context) as download:
vc_redist = download.read()
print(f"Download complete, {len(vc_redist) / 1024 / 1024:.2f} MBytes downloaded.", )
with open("VC_redist.x64.exe", "wb") as f:
f.write(vc_redist)
with open("VC_redist.x64.exe", "wb") as vc_file:
vc_file.write(vc_redist)

for data in self.extra_data:
self.installfile(Path(data))
Expand Down

0 comments on commit 84c072e

Please sign in to comment.