Fabian Deutsch has uploaded a new change for review. Change subject: utils: Fix missing namespace ......................................................................
utils: Fix missing namespace Change-Id: Ie986600db46b95cd4fcf0f3d76753c84f083941f Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1233106 Signed-off-by: Fabian Deutsch <[email protected]> --- M src/ovirt/node/utils/system.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/07/48007/1 diff --git a/src/ovirt/node/utils/system.py b/src/ovirt/node/utils/system.py index e81171f..300200e 100755 --- a/src/ovirt/node/utils/system.py +++ b/src/ovirt/node/utils/system.py @@ -1356,7 +1356,7 @@ "dracut", "--kver", kver, new_initrd] LOGGER.debug("Calling: %s" % argv) - rd_stdout = check_output(argv, stderr=process.STDOUT) + rd_stdout = process.check_output(argv, stderr=process.STDOUT) except: LOGGER.warn("dracut failed to generate the initramfs") LOGGER.warn("dracut output: %s" % rd_stdout) -- To view, visit https://gerrit.ovirt.org/48007 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ie986600db46b95cd4fcf0f3d76753c84f083941f Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Fabian Deutsch <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
