From 4e83a67e00157ff9d27d80cd71c435d7cb48038d Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 4 Oct 2009 19:30:21 +0900 Subject: [PATCH] lowercase is:foo searches --- anki/deck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/deck.py b/anki/deck.py index 1b5958884..17608fb4d 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -1861,7 +1861,7 @@ where id = :id""", pending) token = token[4:] type = SEARCH_TAG elif token.startswith("is:"): - token = token[3:] + token = token[3:].lower() type = SEARCH_TYPE elif token.startswith("fid:") and len(token) > 4: dec = token[4:]