From ff5bc721213395e8057a38792a034fc1a74a01eb Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 25 Dec 2010 12:43:35 +0900 Subject: [PATCH] pass in a 0 timediff if using stock sync() --- anki/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/sync.py b/anki/sync.py index c5425efda..c7c7eb534 100644 --- a/anki/sync.py +++ b/anki/sync.py @@ -112,7 +112,7 @@ class SyncTools(object): def sync(self): "Sync two decks locally. Reimplement this for finer control." - if not self.prepareSync(): + if not self.prepareSync(0): return sums = self.summaries() payload = self.genPayload(sums)