Skip to content

Commit

Permalink
Coerce another pydantic.HttpUrl to str
Browse files Browse the repository at this point in the history
This was missed in 3d48af6.
  • Loading branch information
gotmax23 committed Dec 23, 2023
1 parent d19a09e commit d35c989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antsibull/build_ansible_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def prepare_command() -> int:
ansible_core_release_infos, collections_to_versions = asyncio.run(
get_version_info(
list(deps),
pypi_server_url=app_ctx.pypi_url,
pypi_server_url=str(app_ctx.pypi_url),
galaxy_url=str(app_ctx.galaxy_url),
)
)
Expand Down

0 comments on commit d35c989

Please sign in to comment.