From 90d9dcfc12cbfa7ac103ea6d0e38797c10598d57 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 23 Aug 2011 11:33:08 -0700 Subject: [PATCH] ovs.reconnect: Fix typo in documentation. Reported-by: Reid Price --- python/ovs/reconnect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2