From: Ben Pfaff Date: Tue, 23 Aug 2011 17:37:39 +0000 (-0700) Subject: ovs.jsonrpc: Remove dead class variable Message.__next_id. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17af14360014d8dd05cdc7814cb755a1b6b5d4ef;p=openvswitch ovs.jsonrpc: Remove dead class variable Message.__next_id. Reported-by: Reid Price --- diff --git a/python/ovs/jsonrpc.py b/python/ovs/jsonrpc.py index 906e93c6..66c260fa 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_