Hi all,


I found out a bug with the following part of code:


yum_utils_ver = sub_process.call("/usr/bin/rpmquery --queryformat=%{VERSION} yum-utils", shell=True, close_fds=True)
if yum_utils_ver < "1.1.17":
status.append(_("yum-utils need to be at least version 1.1.17 for reposync -l"))


sub_process.call(..) returns an exit code and not stdout of the command and the if is always true.


I have yet found hot to fix this (python's newbie) so I can provide a patch sorry.


Cheers,
--
Martial (babatoko)