Skip to content

Commit

Permalink
Fix: correctly parse sign_tags from config file
Browse files Browse the repository at this point in the history
  • Loading branch information
janfrederik committed Jul 1, 2023
1 parent 693bade commit 5ce5834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumpversion/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def _load_configuration(config_file, explicit_config, defaults):
except NoOptionError:
pass # no default value then ;)

for boolvaluename in ("commit", "tag", "dry_run"):
for boolvaluename in ("commit", "tag", "sign_tags", "dry_run"):
try:
defaults[boolvaluename] = config.getboolean(
"bumpversion", boolvaluename
Expand Down

0 comments on commit 5ce5834

Please sign in to comment.