Piotr Kliczewski has uploaded a new change for review.

Change subject: stomp: calling super explicitly
......................................................................

stomp: calling super explicitly


Change-Id: I47d17beaac0b41c3dc0b2de0cf2469d6ff519426
Signed-off-by: pkliczewski <[email protected]>
---
M lib/yajsonrpc/stomp.py
1 file changed, 2 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/69/41269/1

diff --git a/lib/yajsonrpc/stomp.py b/lib/yajsonrpc/stomp.py
index 43e2017..c00290d 100644
--- a/lib/yajsonrpc/stomp.py
+++ b/lib/yajsonrpc/stomp.py
@@ -75,7 +75,8 @@
 
 class StompError(RuntimeError):
     def __init__(self, frame):
-        RuntimeError.__init__(self, frame.body)
+        self.frame = frame
+        super(RuntimeError, self).__init__(self.frame.body)
 
 
 class _HeartBeatFrame(object):


-- 
To view, visit https://gerrit.ovirt.org/41269
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I47d17beaac0b41c3dc0b2de0cf2469d6ff519426
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Piotr Kliczewski <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to