We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e6271 commit 9e8dd5cCopy full SHA for 9e8dd5c
aws_doc_sdk_examples_tools/doc_gen_cli.py
@@ -56,7 +56,6 @@ def main():
56
# Replace entities
57
for example in merged_doc_gen.examples.values():
58
errors = EntityErrors()
59
- print(example)
60
title, title_errors = merged_doc_gen.expand_entities(example.title)
61
errors.extend(title_errors)
62
@@ -76,7 +75,7 @@ def main():
76
75
synopsis_list.append(expanded_synopsis)
77
errors.extend(synopsis_errors)
78
79
- if errors:
+ if args.strict and errors:
80
logging.error(
81
f"Errors expanding entities for example: {example}. {errors}"
82
)
0 commit comments