ovs.jsonrpc: Remove dead class variable Message.__next_id.
authorBen Pfaff <blp@nicira.com>
Tue, 23 Aug 2011 17:37:39 +0000 (10:37 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 24 Aug 2011 19:06:52 +0000 (12:06 -0700)
Reported-by: Reid Price <reid@nicira.com>
python/ovs/jsonrpc.py

index 906e93c6823680f9b078d2d7594cfd3fd1afbc0f..66c260fa13ea7b834935a1e505f323b318a2c8eb 100644 (file)
@@ -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_