disable lastSync fudging again

This commit is contained in:
Damien Elmes 2010-12-07 09:19:09 +09:00
parent 2a8ef89ee5
commit da97701b2d

View file

@ -125,7 +125,7 @@ class SyncTools(object):
l = self._lastSync(); r = self.server._lastSync() l = self._lastSync(); r = self.server._lastSync()
# set lastSync to the lower of the two sides # set lastSync to the lower of the two sides
if l != r: if l != r:
self.deck.lastSync = min(l, r) - 350 self.deck.lastSync = min(l, r)
else: else:
self.deck.lastSync = l self.deck.lastSync = l
return True return True