From 0b07707e680e54ed9fd8b841c42cd3355c9a79c7 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 13 Jan 2011 07:55:39 +0900 Subject: [PATCH] make sure we don't try to send the queues when bundling deck --- anki/sync.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/anki/sync.py b/anki/sync.py index edebaf3ec..ab91724de 100644 --- a/anki/sync.py +++ b/anki/sync.py @@ -626,6 +626,10 @@ values del d['path'] del d['syncName'] del d['version'] + if 'newQueue' in d: + del d['newQueue'] + del d['failedQueue'] + del d['revQueue'] # these may be deleted before bundling if 'css' in d: del d['css'] if 'models' in d: del d['models']