From 3fa41bfdb735a4f343534393f690577cae64bb94 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 21 Oct 2025 21:33:59 +0200 Subject: [PATCH] copr-backend: another typo in helpers.py --- roles/copr/backend/templates/provision/helpers.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/copr/backend/templates/provision/helpers.py.j2 b/roles/copr/backend/templates/provision/helpers.py.j2 index 44d0f0fbb4..76c428c963 100644 --- a/roles/copr/backend/templates/provision/helpers.py.j2 +++ b/roles/copr/backend/templates/provision/helpers.py.j2 @@ -3,7 +3,7 @@ def get_hv_identification_from_pool_id(pool_id): {% for host in groups["copr_hypervisor"] %} {% set hostinfo = groups["copr_hypervisor"][host] %} - if pool_id.startswith("{{ hostinfo['libvirt_pool']"): + if pool_id.startswith("{{ hostinfo['libvirt_pool'] }}"): return ( {{ hostinfo["libvirt_pool_order_id"] }}, "qemu+ssh://copr@{{ hostinfo['libvirt_host'] }}/system",