Skip to content

Commit e403e40

Browse files
authored
Ignore missing repos
1 parent db9e71b commit e403e40

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

add-metadata.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ def parse(line):
5959
m = gh_repo_regex.search(line)
6060
if m:
6161
[repo_name] = m.groups()
62-
return github_table_row(retrieve_repo(repo_name))
62+
try:
63+
row = github_table_row(retrieve_repo(repo_name))
64+
except Exception:
65+
row = ''
66+
return row
6367
else:
6468
return line.rstrip()
6569

0 commit comments

Comments
 (0)