Skip to content

Commit 5909ad1

Browse files
authored
fix code styling (GH-12737)
1 parent 7b97ab3 commit 5909ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/distutils/command/bdist_wininst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def create_exe(self, arcname, fullname, bitmap=None):
269269
# convert back to bytes. "latin-1" simply avoids any possible
270270
# failures.
271271
with open(self.pre_install_script, "r",
272-
encoding="latin-1") as script:
272+
encoding="latin-1") as script:
273273
script_data = script.read().encode("latin-1")
274274
cfgdata = cfgdata + script_data + b"\n\0"
275275
else:

0 commit comments

Comments
 (0)