Skip to content

Commit

Permalink
Update release_helper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikeough authored Apr 15, 2023
1 parent 5f6971d commit abd722d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def add_relevant_commits(response):
message = commit.get('commit').get('message')
if(message.startswith('Merge pull request')):
split_message = message.split('\n\n')
if len(split_message) > 0:
if len(split_message) > 1:
merge_commits.append(split_message[0].replace('Merge pull request ', '') + ': ' + split_message[1])


Expand Down

0 comments on commit abd722d

Please sign in to comment.