diff --git a/distutils/dist.py b/distutils/dist.py index 154301ba..8e1e6d0b 100644 --- a/distutils/dist.py +++ b/distutils/dist.py @@ -139,7 +139,7 @@ def __init__(self, attrs=None): # noqa: C901 self.dry_run = False self.help = False for attr in self.display_option_names: - setattr(self, attr, 0) + setattr(self, attr, False) # Store the distribution meta-data (name, version, author, and so # forth) in a separate object -- we're getting to have enough