Skip to content

Commit

Permalink
fix base_url
Browse files Browse the repository at this point in the history
Signed-off-by: Teo Koon Peng <[email protected]>
  • Loading branch information
koonpeng committed Jul 1, 2024
1 parent fb74321 commit 5b6e674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-server/scripts/extract_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def cleanup():
outdir = f"{args.output}"
os.makedirs(outdir, exist_ok=True)

base_url = "http://localhost:8000/rmf-web"
base_url = "http://localhost:8000"
with urlopen(f"{base_url}/docs") as resp:
html: bytes = resp.read()
with open(f"{outdir}/index.html", "bw") as f:
Expand Down

0 comments on commit 5b6e674

Please sign in to comment.