aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-08-23 10:37:39 -0700
committerBen Pfaff <blp@nicira.com>2011-08-24 12:06:52 -0700
commit17af14360014d8dd05cdc7814cb755a1b6b5d4ef (patch)
treeb8b672e45495917b4c3f10da8cabd7ce82ed5789 /python
parente0b2332760c97b8dbe6fdd89e18634a7e8f8050e (diff)
ovs.jsonrpc: Remove dead class variable Message.__next_id.
Reported-by: Reid Price <reid@nicira.com>
Diffstat (limited to 'python')
-rw-r--r--python/ovs/jsonrpc.py1
1 files changed, 0 insertions, 1 deletions
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_