From 84b88507a27b3ccf3d0433fb6b419165b4579339 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 27 Nov 2009 19:53:24 +0900 Subject: [PATCH] tweak importing message --- anki/importing/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anki/importing/__init__.py b/anki/importing/__init__.py index 83ce7495f..4c86b1b23 100644 --- a/anki/importing/__init__.py +++ b/anki/importing/__init__.py @@ -122,9 +122,9 @@ class Importer(object): if cm.active: active += 1 if active > 1 and not self.multipleCardsAllowed: raise ImportFormatError(type="tooManyCards", - info=_(""" -The current importer only supports a single active card template. Please disable -all but one card template.""")) + info=_("""\ +The current importer only supports a single active card template. Please disable\ + all but one card template.""")) # strip invalid cards cards = self.stripInvalid(cards) cards = self.stripOrTagDupes(cards)