Преглед изворни кода

Fix release script for null user

Signed-off-by: Ulysses Souza <[email protected]>
Ulysses Souza пре 6 година
родитељ
комит
c15e8af7f8
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      script/release/release/repository.py

+ 2 - 0
script/release/release/repository.py

@@ -220,6 +220,8 @@ def get_contributors(pr_data):
     commits = pr_data.get_commits()
     authors = {}
     for commit in commits:
+        if not commit or not commit.author or not commit.author.login:
+            continue
         author = commit.author.login
         authors[author] = authors.get(author, 0) + 1
     return [x[0] for x in sorted(list(authors.items()), key=lambda x: x[1])]