We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50225ff commit a71a0baCopy full SHA for a71a0ba
src/py/kaleido/_page_generator.py
@@ -22,6 +22,7 @@ def _ensure_path(path: Path | str | tuple[str | Path, str]) -> None:
22
path = path[0]
23
_logger.debug(f"Ensuring path {path!s}")
24
parsed = urlparse(str(path))
25
+ _logger.debug(f"Parsed file path: {parsed}")
26
if parsed.scheme.startswith("http"): # is url
27
return
28
elif (
0 commit comments