Skip to content

Commit ff9894a

Browse files
Merge pull request #154 from elliottmurray/style/git_message
fix: change to head from master
2 parents 3c1106a + be6697f commit ff9894a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/commit_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main():
1818
tag = subprocess.check_output(cmd_tag,
1919
shell=True).decode("utf-8").split('\n')[0]
2020

21-
cmd = "git log --pretty=format:'%s' {}..master".format(tag)
21+
cmd = "git log --pretty=format:'%s' {}..HEAD".format(tag)
2222
commits = subprocess.check_output(cmd, shell=True)
2323
commits = commits.decode("utf-8").split('\n')
2424
for commit in commits:

0 commit comments

Comments
 (0)