Skip to content

Commit

Permalink
Merge pull request #300 from tekktrik/dev/fix-library-updates-text
Browse files Browse the repository at this point in the history
Fix new/updated libraries formatting
  • Loading branch information
kattni authored Sep 12, 2022
2 parents 51fe0e6 + 0934dea commit de8f88a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions adabot/circuitpython_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,16 @@ def run_library_checks(validators, kw_args, error_depth):

logger.info("* https://circuitpython.org/contributing")

logger.info("Library updates in the last seven days:")
logger.info("")
logger.info("#### Library updates in the last seven days:")
if len(new_libs) != 0:
logger.info("**New Libraries**")
logger.info("* **New Libraries**")
for title, link in new_libs.items():
logger.info(" * [%s](%s)", title, link)
logger.info(" * [%s](%s)", title, link)
if len(updated_libs) != 0:
logger.info("**Updated Libraries**")
logger.info("* **Updated Libraries**")
for title, link in updated_libs.items():
logger.info(" * [%s](%s)", title, link)
logger.info(" * [%s](%s)", title, link)

if len(validators) != 0:
lib_repos = []
Expand Down

0 comments on commit de8f88a

Please sign in to comment.