From 6fb78ea138445061131c54a96eac2325b4fdb973 Mon Sep 17 00:00:00 2001 From: Jana Librova Date: Mar 25 2025 14:01:45 +0000 Subject: add-external-repo excepts comma-separated and space-separated list Fixes: https://pagure.io/koji/issue/4353 --- diff --git a/kojihub/kojihub.py b/kojihub/kojihub.py index c326854..e197a5d 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)