Skip to content

Commit

Permalink
extra-files: optimize the summary script
Browse files Browse the repository at this point in the history
  • Loading branch information
hugcabbage committed Dec 15, 2023
1 parent 3eed29a commit 8fbe569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra-files/tools/code_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get_last_log(self):
code_branch.append(r[6:])
elif r.startswith('tag:'):
code_tag.append(r[4:])
elif '/' in r or r == 'HEAD':
elif '/' in r or r == 'HEAD' or r == 'grafted':
pass
else:
code_branch.append(r)
Expand Down

0 comments on commit 8fbe569

Please sign in to comment.