Skip to content

Commit c9cb79f

Browse files
committed
Update azhelpgen.py according to api changed
1 parent d0a069a commit c9cb79f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/sphinx/azhelpgen/azhelpgen.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ def make_rst(self):
3131
help_files = []
3232
for cmd, parser in parser_dict.items():
3333
help_file = _help.GroupHelpFile(cmd, parser) if _is_group(parser) else _help.CommandHelpFile(cmd, parser)
34-
help_file.load(parser)
34+
try:
35+
help_file.load(parser)
36+
except Exception as ex:
37+
print(ex)
3538
help_files.append(help_file)
3639
help_files = sorted(help_files, key=lambda x: x.command)
3740

0 commit comments

Comments
 (0)