projects.py: print readme exceptions

This commit is contained in:
Drew DeVault 2022-02-14 17:53:23 +01:00
parent 43604cea9b
commit b2e5433d30
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ def summary_GET(owner, project_name):
summary = hg.get_readme(owner, repo.name, repo.url())
else:
assert False
except:
except Exception as ex:
print(ex)
summary = None
summary_error = True