From b7fc63d89682fa13b8a04382ef47e90f5e18c6b7 Mon Sep 17 00:00:00 2001 From: Florent Rougon <f.rougon@free.fr> Date: Fri, 26 Jan 2018 09:42:28 +0100 Subject: [PATCH] terrasync.py: remove methods TerraSync.isReady() and TerraSync.update() These methods don't work, because HTTPGetter objects have no isReady() and update() methods either. --- scripts/python/terrasync.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/scripts/python/terrasync.py b/scripts/python/terrasync.py index e51b48ede..440758d64 100755 --- a/scripts/python/terrasync.py +++ b/scripts/python/terrasync.py @@ -284,15 +284,6 @@ class TerraSync: #print ("removing orphan dir",f) shutil.rmtree( join(localFullPath,f) ) - - def isReady(self): - return self.httpGetter and self.httpGetter.isReady() - return False - - def update(self): - if self.httpGetter: - self.httpGetter.update() - #################################################################################################################################