Don't explode if missing the README

This commit is contained in:
decentral1se 2021-05-02 22:10:58 +02:00
parent b53a3ed3f7
commit 18e22b24ea
Signed by untrusted user who does not match committer: decentral1se
GPG Key ID: 92DAD76BD9567B8A
1 changed files with 7 additions and 3 deletions

View File

@ -164,9 +164,13 @@ def get_app_metadata(app_path):
chdir(app_path)
with open(f"{app_path}/README.md", "r") as handle:
log.info(f"{app_path}/README.md")
contents = handle.read()
try:
with open(f"{app_path}/README.md", "r") as handle:
log.info(f"{app_path}/README.md")
contents = handle.read()
except Exception:
log.info(f"No {app_path}/README.md discovered, moving on")
return {}
try:
for match in findall(r"\*\*.*\s\*", contents):