Francesco Romani has posted comments on this change.
Change subject: GuestIF Refactoring ......................................................................
Patch Set 4:
(1 comment)
http://gerrit.ovirt.org/#/c/24618/4/vdsm/guestIF.py File vdsm/guestIF.py:
Line 42: class UnknownMessageError(Exception): Line 43: def __init__(self, msg, args): Line 44: Exception.__init__(self, 'Unknown or unsupported guest agent message ' Line 45: '"%s" received with args "%s"' % (msg, Line 46: str(args))) Please use super() here Line 47: Line 48: Line 49: class MessageHandler(object): Line 50: def __init__(self, agent):