Skip to content

Commit

Permalink
prepend check ID when printing documentation URLs with -d / --doc-urls
Browse files Browse the repository at this point in the history
  • Loading branch information
gereonvey committed Jan 24, 2024
1 parent 5bfcd88 commit 555ae86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks-checker
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def checkGetDocuUrls(check: dict) -> int:
logging.debug(f"{len(urls)} URLs found")
if len(urls)>0:
for url in urls:
print(url)
print(f"{check['id']}: {url}")
return 0

def checkCheckUrls(check: dict) -> int:
Expand Down

0 comments on commit 555ae86

Please sign in to comment.