mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 06:07:11 -05:00
don't add = as a delim
This commit is contained in:
parent
ed50fb20d9
commit
465a890bcd
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ class TextImporter(Importer):
|
|||
info=_("File is not encoded in UTF-8."))
|
||||
self.dialect = None
|
||||
sniffer = csv.Sniffer()
|
||||
delims = [',', '\t', ';', ':', '=']
|
||||
delims = [',', '\t', ';', ':']
|
||||
if not self.delimiter:
|
||||
try:
|
||||
self.dialect = sniffer.sniff("\n".join(self.data[:10]),
|
||||
|
|
|
|||
Loading…
Reference in a new issue