From b7488d1c96c21141b0c225857334b08fb207c83f Mon Sep 17 00:00:00 2001 From: Jana Librova Date: Tue, 25 Mar 2025 15:00:01 +0100 Subject: [PATCH] add-external-repo excepts comma-separated and space-separated list Fixes: https://pagure.io/koji/issue/4353 --- kojihub/kojihub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kojihub/kojihub.py b/kojihub/kojihub.py index 34358cb3..24f8eda7 100644 --- a/kojihub/kojihub.py +++ b/kojihub/kojihub.py @@ -4225,7 +4225,7 @@ def add_external_repo_to_tag(tag_info, repo_info, priority, merge_mode='koji', a repo_id = repo['id'] if arches is not None: - arches = koji.parse_arches(arches, strict=True) + arches = koji.parse_arches(arches, strict=False) priority = convert_value(priority, cast=int)