gather: Fix duplicated log line

Due to overwriting an existing variable the logs are getting duplicated
line about missing comps packages instead of announcement of gathering
being finished. Rename the variable to fix the problem.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2017-08-16 13:12:58 +02:00
parent a8cd78faf9
commit be4501c54b
1 changed files with 4 additions and 4 deletions

View File

@ -157,11 +157,11 @@ def resolve_deps(compose, arch, variant):
packages, broken_deps, missing_comps_pkgs = pungi_wrapper.parse_log(f)
if missing_comps_pkgs:
msg = ("Packages mentioned in comps do not exist for %s.%s: %s"
% (variant.uid, arch, ", ".join(sorted(missing_comps_pkgs))))
compose.log_warning(msg)
log_msg = ("Packages mentioned in comps do not exist for %s.%s: %s"
% (variant.uid, arch, ", ".join(sorted(missing_comps_pkgs))))
compose.log_warning(log_msg)
if compose.conf['require_all_comps_packages']:
raise RuntimeError(msg)
raise RuntimeError(log_msg)
compose.log_info("[DONE ] %s" % msg)
return packages, broken_deps