Skip to content

Commit dac20d0

Browse files
committed
cleanup
1 parent ec6f33a commit dac20d0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/Doxyfile.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1163,8 +1163,7 @@ HTML_STYLESHEET =
11631163
# list). For an example see the documentation.
11641164
# This tag requires that the tag GENERATE_HTML is set to YES.
11651165

1166-
HTML_EXTRA_STYLESHEET = @DOXYGEN_HTML_EXTRA_STYLESHEET@ \
1167-
@CMAKE_SOURCE_DIR@/docs/custom-dark-fixes.css
1166+
HTML_EXTRA_STYLESHEET = @DOXYGEN_HTML_EXTRA_STYLESHEET@
11681167

11691168
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
11701169
# other source files which should be copied to the HTML output directory. Note

toolchain/mfc/gen_case_constraints_docs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,8 @@ def load_case_params(case_dir: str) -> Dict[str, Any]:
428428
)
429429
params = json.loads(result.stdout)
430430
return params
431-
except (subprocess.CalledProcessError, json.JSONDecodeError, subprocess.TimeoutExpired):
431+
except (subprocess.CalledProcessError, json.JSONDecodeError, subprocess.TimeoutExpired) as e:
432+
print(f"WARNING: Failed to load params from {case_path}: {e}", file=sys.stderr)
432433
return {}
433434

434435

@@ -620,7 +621,8 @@ def generate_playbook() -> str:
620621
summary = summarize_case_params(params)
621622
card = render_playbook_card(entry, summary)
622623
lines.append(card)
623-
except Exception: # pylint: disable=broad-except
624+
except Exception as e: # pylint: disable=broad-except
625+
print(f"WARNING: Failed to process playbook entry '{entry.case_dir}': {e}", file=sys.stderr)
624626
continue
625627

626628
return "\n".join(lines)

0 commit comments

Comments
 (0)