Skip to content

Commit 547a4b6

Browse files
committed
allow missing author
1 parent df473d3 commit 547a4b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

generateGraph.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ def create_graph_repos(repos=REPOS, use_custom_images=USE_CUSTOM_IMAGES, repo_im
5050
for commit in commits:
5151
duplicate = False
5252
author = commit["author"]
53+
if not author:
54+
continue
5355
for index, node in enumerate(graph["nodes"]):
5456
if node["name"] == author["login"]:
5557
duplicate = True

0 commit comments

Comments
 (0)