Dima Kuznetsov has uploaded a new change for review. Change subject: bridge: Make VdsmError more verbose ......................................................................
bridge: Make VdsmError more verbose Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1181646 Change-Id: I93d41d0cf0494ed3e3a647d873bcff2f529dc2ee Signed-off-by: Dima Kuznetsov <[email protected]> --- M vdsm/rpc/Bridge.py 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/15/37015/1 diff --git a/vdsm/rpc/Bridge.py b/vdsm/rpc/Bridge.py index f1f6f31..92c9199 100644 --- a/vdsm/rpc/Bridge.py +++ b/vdsm/rpc/Bridge.py @@ -34,6 +34,7 @@ class VdsmError(Exception): def __init__(self, code, message): + Exception.__init__(self, code, message) self.code = code self.message = message -- To view, visit http://gerrit.ovirt.org/37015 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I93d41d0cf0494ed3e3a647d873bcff2f529dc2ee Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dima Kuznetsov <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
