Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pygeoapi/openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_ogc_schemas_location(server_config: dict) -> str:
if osl.startswith('http'):
value = osl
elif osl.startswith('/'):
base_url = get_base_url({'server': server_config})
base_url = get_base_url({'server': server_config}).rstrip('/')
value = f'{base_url}/schemas'

return value
Expand Down
Loading