mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
Sniffer technically expects a string, not a list
This commit is contained in:
parent
b935c7e89b
commit
b06b2f26f0
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ from anki.lang import _
|
|||
class TextImporter(NoteImporter):
|
||||
|
||||
needDelimiter = True
|
||||
patterns = ("\t", "|", ",", ";", ":")
|
||||
patterns = "\t|,;:"
|
||||
|
||||
def __init__(self, col, file):
|
||||
NoteImporter.__init__(self, col, file)
|
||||
|
|
Loading…
Reference in a new issue