8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed83f30 commit 735322dCopy full SHA for 735322d
cpydist/bdist_msi.py
@@ -242,7 +242,7 @@ def _get_wixobj_name(self, myc_version=None):
242
"""Get the name for the wixobj-file."""
243
if not myc_version:
244
myc_version = self.distribution.get_version()
245
- label = f"-{self.label if self.label else ''}"
+ label = f"-{self.label}" if self.label else ""
246
version_extra 43A7 span> = f"-{VERSION_EXTRA}" if VERSION_EXTRA else ""
247
arch = "windows-x86-64bit" if ARCH_64BIT else "windows-x86-32bit"
248
return (
0 commit comments