1
0
Fork 0

terrasync.py: remove methods TerraSync.isReady() and TerraSync.update()

These methods don't work, because HTTPGetter objects have no isReady()
and update() methods either.
This commit is contained in:
Florent Rougon 2018-01-26 09:42:28 +01:00
parent 417d81d4c3
commit b7fc63d896

View file

@ -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()
#################################################################################################################################