From 06c2e875f00088c3af42608089c6c6a477d66f15 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Thu, 29 May 2014 19:50:27 -0400 Subject: [PATCH] Extend scan time to a full second. --- beacon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon.py b/beacon.py index 0c62446..9eedad6 100644 --- a/beacon.py +++ b/beacon.py @@ -74,8 +74,8 @@ class ZCBroadcast: # Get the names of servers offering TiVo videos browser = Zeroconf.ServiceBrowser(self.rz, VIDS, ZCListener(names)) - # Give them half a second to respond - time.sleep(0.5) + # Give them a second to respond + time.sleep(1) # Now get the addresses -- this is the slow part for name in names: -- 2.11.4.GIT