Skip to content

Commit

Permalink
Add print
Browse files Browse the repository at this point in the history
  • Loading branch information
HCookie committed Oct 16, 2024
1 parent e020fec commit 570019b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion contributors/contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def get_contributors(
except Exception as e:
print("Error getting contributors for repository: " + repo.full_name)
print(e)
raise e
return None

return contributors
3 changes: 2 additions & 1 deletion contributors/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,14 @@ def get_contributor_table(
row += f" {commit_urls} |\n"

added_to_org: bool = False
print(show_organisations_list, collaborator.organisations)
for org in collaborator.organisations:
if org in show_organisations_list:
organisation_contributors[org].append(row)
added_to_org = True

if not added_to_org:
organisation_contributors["independent"].append(row)
organisation_contributors["Independent"].append(row)

tables = {
org: headers + "".join(rows) for org, rows in organisation_contributors.items()
Expand Down

0 comments on commit 570019b

Please sign in to comment.