From d35c9898a9c954db6306da61527e3f139dba6c53 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Sat, 23 Dec 2023 03:56:31 +0000 Subject: [PATCH] Coerce another pydantic.HttpUrl to str This was missed in 3d48af60b325463a27b4c26297a43390934fdfc5. --- src/antsibull/build_ansible_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/antsibull/build_ansible_commands.py b/src/antsibull/build_ansible_commands.py index 6b21f668..a51ef1a4 100644 --- a/src/antsibull/build_ansible_commands.py +++ b/src/antsibull/build_ansible_commands.py @@ -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), ) )