Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/git-bc-show-eligible
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def main():
author_info = ''
if args.all:
author_info = author_format_str % (commit.author.name, commit.author.email)
commit_msg = commit.message[:commit.message.index('\n')]
commit_msg = commit.message.partition('\n')[0]
return commit_format_str % (hash_fn(commit.id), commit_msg, author_info)

first_parent_set = build_first_parent_set(repo, from_commit, base_id)
Expand Down