From 1fd1d81a2a48849d973b617d79e0dce98c09e9a9 Mon Sep 17 00:00:00 2001 From: Correl Date: Fri, 16 Jul 2021 00:46:43 -0400 Subject: [PATCH] Fix name search --- tutor/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutor/search.py b/tutor/search.py index 854bb87..7f67c91 100644 --- a/tutor/search.py +++ b/tutor/search.py @@ -166,7 +166,7 @@ oracle = parsy.seq( text=string_literal, ).combine_dict(Oracle) -name = string_literal.map(Name) +name = parsy.seq(text=string_literal).combine_dict(Name) criterion = colors | expansion | rarity | type_line | oracle | name