From c1bdbd8685da5b1a997583df18145dc9a8add95d Mon Sep 17 00:00:00 2001 From: Shikhar Bhushan Date: Tue, 27 Oct 2009 21:51:47 +0100 Subject: [PATCH] umm... java makes me forget 'self' is not implicit --- ncclient/operations/rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ncclient/operations/rpc.py b/ncclient/operations/rpc.py index d1f7494..c3966f8 100644 --- a/ncclient/operations/rpc.py +++ b/ncclient/operations/rpc.py @@ -129,7 +129,7 @@ class RPCError(OperationError): if self.message is not None: OperationError.__init__(self, self.message) else: - OperationError.__init__(self, to_dict()) + OperationError.__init__(self, self.to_dict()) def to_dict(self): return { -- 1.7.10.4