Skip to content

Commit

Permalink
[#370] Updated util.winversion.mktempver to utilize f-strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
eoyilmaz committed Sep 27, 2024
1 parent b48210c commit 6e86c78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions util/winversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ def mktempver(
"prodvers": str(version_tuple),
"CompanyName": DOMAIN,
"FileDescription": description_,
"FileVersion": version,
"FileVersion": f"{version}",
"InternalName": name_,
"LegalCopyright": " + author,
"OriginalFilename": name_ + ".exe",
"LegalCopyright": f{author}",
"OriginalFilename": f"{name_}.exe",
"ProductName": name_,
"ProductVersion": version,
"ProductVersion": f"{version}",
}
version_template.close()
tempdir = tempfile.mkdtemp()
Expand Down

0 comments on commit 6e86c78

Please sign in to comment.