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 d0a069a commit c9cb79fCopy full SHA for c9cb79f
doc/sphinx/azhelpgen/azhelpgen.py
@@ -31,7 +31,10 @@ def make_rst(self):
31
help_files = []
32
for cmd, parser in parser_dict.items():
33
help_file = _help.GroupHelpFile(cmd, parser) if _is_group(parser) else _help.CommandHelpFile(cmd, parser)
34
- help_file.load(parser)
+ try:
35
+ help_file.load(parser)
36
+ except Exception as ex:
37
+ print(ex)
38
help_files.append(help_file)
39
help_files = sorted(help_files, key=lambda x: x.command)
40
0 commit comments