diff --git a/plugins/tag2distrepo/tag2distrepo_sme.py b/plugins/tag2distrepo/tag2distrepo_sme.py index b8a176d..bbf802b 100644 --- a/plugins/tag2distrepo/tag2distrepo_sme.py +++ b/plugins/tag2distrepo/tag2distrepo_sme.py @@ -21,7 +21,6 @@ def tag2distrepo(cbtype, tag, build, user, force=False): raise ValueError("Tag %s has no arches configured but tag2distrepo_sme is enabled" % tag['name']) keys = tag['extra'].get("tag2distrepo_sme.keys", '').split() - compfile = tag['extra'].get("tag2distrepo_sme.comp", 'none') inherit = tag['extra'].get("tag2distrepo_sme.inherit", False) latest = tag['extra'].get("tag2distrepo_sme.latest", False) split_debuginfo = tag['extra'].get("tag2distrepo_sme.split_debuginfo", False) @@ -38,7 +37,7 @@ def tag2distrepo(cbtype, tag, build, user, force=False): if tag['extra'].get("tag2distrepo_sme.allow_missing_signatures"): task_opts = { 'arch': tag['arches'].split(), - 'comp': compfile, + 'comp': None, 'delta': [], 'event': None, 'inherit': inherit, @@ -51,7 +50,7 @@ def tag2distrepo(cbtype, tag, build, user, force=False): else: task_opts = { 'arch': tag['arches'].split(), - 'comp': compfile, + 'comp': None, 'delta': [], 'event': None, 'inherit': inherit,