From: Ben Pfaff Date: Tue, 23 Aug 2011 18:33:08 +0000 (-0700) Subject: ovs.reconnect: Fix typo in documentation. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90d9dcfc12cbfa7ac103ea6d0e38797c10598d57;p=openvswitch ovs.reconnect: Fix typo in documentation. Reported-by: Reid Price --- diff --git a/python/ovs/reconnect.py b/python/ovs/reconnect.py index ac014166..88174946 100644 --- a/python/ovs/reconnect.py +++ b/python/ovs/reconnect.py @@ -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