ovs.reconnect: Fix typo in documentation.
authorBen Pfaff <blp@nicira.com>
Tue, 23 Aug 2011 18:33:08 +0000 (11:33 -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/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