Skip to content

Commit 3d9fb09

Browse files
committed
HOTFIX: Minor patch to merge script.
1 parent eefb90d commit 3d9fb09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/merge_spark_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def resolve_jira(title, merge_branches, comment):
237237
# only consider the release branch to be the fix version. E.g. it is not valid to have
238238
# both 1.1.0 and 1.0.0 as fix versions.
239239
(major, minor, patch) = v.split(".")
240-
if patch == 0:
240+
if patch == "0":
241241
previous = "%s.%s.%s" % (major, int(minor) - 1, 0)
242242
if previous in default_fix_versions:
243243
default_fix_versions = filter(lambda x: x != v, default_fix_versions)

0 commit comments

Comments
 (0)