Skip to content

Commit

Permalink
Merge pull request #1812 from timbrel/fix-finding-fixups-upwards
Browse files Browse the repository at this point in the history
  • Loading branch information
kaste authored Nov 23, 2023
2 parents c7c795e + 4796221 commit ff772fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/commands/log_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,7 @@ def find_matching_commit(dot, message, forward=True):

def _find_fixups_upwards(dot, message):
# type: (colorizer.Char, str) -> Iterator[colorizer.Char]
messages = add_fixup_or_squash_prefixes(message)
messages = add_fixup_or_squash_prefixes(message.rstrip(".").strip())

previous_dots = follow_dots(dot, forward=False)
for dot, this_message in _with_message(take(50, previous_dots)):
Expand Down

0 comments on commit ff772fd

Please sign in to comment.