From 17af14360014d8dd05cdc7814cb755a1b6b5d4ef Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 23 Aug 2011 10:37:39 -0700 Subject: [PATCH] ovs.jsonrpc: Remove dead class variable Message.__next_id. Reported-by: Reid Price --- python/ovs/jsonrpc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/ovs/jsonrpc.py b/python/ovs/jsonrpc.py index 906e93c68..66c260fa1 100644 --- a/python/ovs/jsonrpc.py +++ b/python/ovs/jsonrpc.py @@ -34,7 +34,6 @@ class Message(object): T_NOTIFY: "notification", T_REPLY: "reply", T_ERROR: "error"} - __next_id = 0 def __init__(self, type_, method, params, result, error, id): self.type = type_ -- 2.45.2