From 1f239c1e67c937c34c4a1f2a9da9b12d6edee5b4 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 2 Sep 2010 11:45:33 +0900 Subject: [PATCH] direct user to help page when file not in utf-8 --- anki/importing/csvfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/importing/csvfile.py b/anki/importing/csvfile.py index 00fb0bd91..5714886de 100644 --- a/anki/importing/csvfile.py +++ b/anki/importing/csvfile.py @@ -42,7 +42,7 @@ class TextImporter(Importer): except UnicodeDecodeError, e: raise ImportFormatError( type="encodingError", - info=_("The file was not in UTF8 format.")) + info=_("Please save in UTF-8 format. Click help for info.")) if len(row) != self.numFields: log.append(_( "'%(row)s' had %(num1)d fields, "