2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-02 15:25:22 +00:00

ovs.reconnect: Make Reconnect.Reconnect inherit from object.

Reported-by: Reid Price <reid@nicira.com>
This commit is contained in:
Ben Pfaff
2011-08-23 10:45:43 -07:00
parent 2ad4ef8920
commit 0a61b042a5

View File

@@ -117,7 +117,7 @@ class Reconnect(object):
% (fsm.name, (now - fsm.state_entered) / 1000.0))
return DISCONNECT
class Reconnect:
class Reconnect(object):
name = "RECONNECT"
is_connected = False