From a2cd19f49a0bdd1e0712a7affce657db865ed800 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 5 Dec 2010 17:43:54 +0900 Subject: [PATCH] tell users how they can disable the move check --- anki/deck.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/anki/deck.py b/anki/deck.py index 767c3948b..05fdc46f1 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -3159,7 +3159,9 @@ Return new path, relative to media dir.""" if self.syncName and self.syncName != checksum(self.path.encode("utf-8")): self.notify(_("""\ Because '%s' has been moved or copied, automatic synchronisation \ -has been disabled. (ERR-0100)""") % self.name()) +has been disabled (ERR-0100). + +You can disable this check in Settings>Preferences>Network.""") % self.name()) self.disableSyncing() self.syncName = None self.lastSync = 0