Skip to content

Commit

Permalink
Merge pull request #1817 from timbrel/graph-nit
Browse files Browse the repository at this point in the history
  • Loading branch information
kaste authored Dec 8, 2023
2 parents c4f668c + 2c94b41 commit 19d3610
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 @@ -84,7 +84,7 @@
COMMIT_NODE_CHAR_OPTIONS = "●*"
GRAPH_CHAR_OPTIONS = r" /_\|\-\\."
COMMIT_LINE = re.compile(
r"^[{graph_chars}]*[{node_chars}][{graph_chars}]* "
r"^[{graph_chars}]*(?P<dot>[{node_chars}])[{graph_chars}]* "
r"(?P<commit_hash>[a-f0-9]{{5,40}}) +"
r"(\((?P<decoration>.+?)\))?"
.format(graph_chars=GRAPH_CHAR_OPTIONS, node_chars=COMMIT_NODE_CHAR_OPTIONS)
Expand Down

0 comments on commit 19d3610

Please sign in to comment.