Skip to content

Commit

Permalink
recent changes broke pulled incorrect dict field for github profile n…
Browse files Browse the repository at this point in the history
…ame, fixed
  • Loading branch information
RussBerg committed Jun 22, 2023
1 parent a228452 commit 2aa71bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev_tools/docs/nxdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ def _parse_nxdl_file(self, nxdl_file: Path):
for date_str, contrib_dct in contribs_dct.items():
date_str = date_str.split("T")[0]
name = contrib_dct['name']
gh_login_nm = contrib_dct['committer']['commit']['committer']['name']
gh_login_nm = contrib_dct['committer']['committer']['login']
gh_avatar_url = contrib_dct['committer']['committer']['avatar_url']
self._print("")
s = "|".join([name, gh_login_nm, gh_avatar_url, date_str])
self._print(f" .. |contrib_info| replace:: {s}")
self._print(f" .. |contrib_name| replace:: {s}")

self._print("")
self._print("**Status**:\n")
Expand Down

0 comments on commit 2aa71bc

Please sign in to comment.