add print to see where it writes it, in github workflow action

This commit is contained in:
atomsk-0
2025-03-03 19:57:51 +02:00
parent 5d79235313
commit eafdfb6be0

View File

@@ -23,10 +23,13 @@ try:
url = contributor.get("html_url", None)
contribution_count = str(contributor.get("contributions", None))
f.write(name.replace(";", "WD_CONTRIB_SEMICOLON") + ";" + pfp.replace(";", "WD_CONTRIB_SEMICOLON") + ";" + url.replace(";", "WD_CONTRIB_SEMICOLON") + ";" + contribution_count + "\n")
print("Wrote contributors.txt to " + os.path.join(os.path.dirname(__file__), "..", "Assets", "contributors.txt"))
except:
print("Couldn't fetch contributor information.")
exit(0)
f.close()