ovs.stream: Drop Stream.get_name() since clients can use 'name' directly.
[openvswitch] / python / ovs / reconnect.py
index ac0141665b5176c45384b77e1ae0f3f4c9dd4a96..8817494686678d3d3ff8eddc65d02ccdbfece1a4 100644 (file)
@@ -513,8 +513,8 @@ class Reconnect(object):
 
     def timeout(self, now):
         """Returns the number of milliseconds after which self.run() should be
-        called if nothing else notable happens in the meantime, or a negative
-        number if this is currently unnecessary."""
+        called if nothing else notable happens in the meantime, or None if this
+        is currently unnecessary."""
         deadline = self.state.deadline(self)
         if deadline is not None:
             remaining = deadline - now