From f9e14a4af6940b33ec17ba7bf3c396804ffd311f Mon Sep 17 00:00:00 2001 From: Luiz Carvalho Date: Mar 16 2018 12:53:18 +0000 Subject: Fix compose related params for container-build The parameters signing_intent and compose_ids were filtered out and passed to Koji task. Signed-off-by: Luiz Carvalho --- diff --git a/pyrpkg/__init__.py b/pyrpkg/__init__.py index 74cdbfc..20fa1e1 100644 --- a/pyrpkg/__init__.py +++ b/pyrpkg/__init__.py @@ -2604,7 +2604,7 @@ class Commands(object): task_opts = {} for key in ('scratch', 'name', 'version', 'release', - 'yum_repourls', 'git_branch'): + 'yum_repourls', 'git_branch', 'signing_intent', 'compose_ids'): if key in opts: task_opts[key] = opts[key]