Alon Bar-Lev has uploaded a new change for review. Change subject: miniyum: print transaction information when built ......................................................................
miniyum: print transaction information when built Change-Id: I94f0f8778a2de99825df0bdcd95d5855ee93f6e8 Signed-off-by: Alon Bar-Lev <[email protected]> --- M src/otopi/miniyum.py 1 file changed, 7 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/45/16745/1 diff --git a/src/otopi/miniyum.py b/src/otopi/miniyum.py index 78f65f2..3369941 100755 --- a/src/otopi/miniyum.py +++ b/src/otopi/miniyum.py @@ -775,6 +775,13 @@ else: raise yum.Errors.YumBaseError(msg) + self._sink.verbose('Transaction Summary:') + for p in self.queryTransaction(): + self._sink.verbose(' %-10s - %s' % ( + p['operation'], + p['display_name'] + )) + return ret except Exception as e: -- To view, visit http://gerrit.ovirt.org/16745 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I94f0f8778a2de99825df0bdcd95d5855ee93f6e8 Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
