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