Skip to content

Commit

Permalink
Fix bare function call
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Oct 11, 2023
1 parent 82bc945 commit fa14969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev_tools/git_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def bump_pyproject_version(args):
Bump the version up, as required; write the version tag into pyproject.toml.
"""
if args.increment_version is None:
tag = ".".join([str(ii) for ii in get_version_list[-1]])
tag = ".".join([str(ii) for ii in get_version_list()[-1]])
else:
tag = ".".join(
[str(ii) for ii in increment_tag_version(args.increment_version)]
Expand Down

0 comments on commit fa14969

Please sign in to comment.