Skip to content

Commit 4e9d2f3

Browse files
committed
More Python3 fixes
1 parent 60d2348 commit 4e9d2f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/publish.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def generate_changelog(project):
2323
released_tags = list(filter(lambda tag: tag != project.release_tag_name(), released_tags))
2424

2525
last_released_tag = released_tags[-1]
26-
print "Using {} as the changelog baseline".format(last_released_tag)
26+
print("Using {} as the changelog baseline".format(last_released_tag))
2727

2828
revspec = "%s..%s" % (last_released_tag, project.release_branch())
2929
git_log = helpers.check_string_output(['git', 'log', revspec,

0 commit comments

Comments
 (0)