diff --git a/nova/rpc/common.py b/nova/rpc/common.py index 43c4a1fa..76a761f5 100644 --- a/nova/rpc/common.py +++ b/nova/rpc/common.py @@ -45,7 +45,9 @@ class RemoteError(exception.NovaException): self.exc_type = exc_type self.value = value self.traceback = traceback - super(RemoteError, self).__init__(**self.__dict__) + super(RemoteError, self).__init__(exc_type=exc_type, + value=value, + traceback=traceback) class Connection(object):