Skip to content

Commit de8f88a

Browse files
authored
Merge pull request #300 from tekktrik/dev/fix-library-updates-text
Fix new/updated libraries formatting
2 parents 51fe0e6 + 0934dea commit de8f88a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

adabot/circuitpython_libraries.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,15 +245,16 @@ def run_library_checks(validators, kw_args, error_depth):
245245

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

248-
logger.info("Library updates in the last seven days:")
248+
logger.info("")
249+
logger.info("#### Library updates in the last seven days:")
249250
if len(new_libs) != 0:
250-
logger.info("**New Libraries**")
251+
logger.info("* **New Libraries**")
251252
for title, link in new_libs.items():
252-
logger.info(" * [%s](%s)", title, link)
253+
logger.info(" * [%s](%s)", title, link)
253254
if len(updated_libs) != 0:
254-
logger.info("**Updated Libraries**")
255+
logger.info("* **Updated Libraries**")
255256
for title, link in updated_libs.items():
256-
logger.info(" * [%s](%s)", title, link)
257+
logger.info(" * [%s](%s)", title, link)
257258

258259
if len(validators) != 0:
259260
lib_repos = []

0 commit comments

Comments
 (0)