From 765e8bc1e2157f5746b1d498bb0fcb40fc5e2f51 Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Wed, 28 Sep 2022 14:02:12 -0600 Subject: [PATCH] fix stray quotes thanks sk33t3rson for the catch --- evennia/contrib/rpg/character_creator/example_menu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/rpg/character_creator/example_menu.py b/evennia/contrib/rpg/character_creator/example_menu.py index ab432b6028..f9496c4213 100644 --- a/evennia/contrib/rpg/character_creator/example_menu.py +++ b/evennia/contrib/rpg/character_creator/example_menu.py @@ -412,7 +412,7 @@ def menunode_choose_name(caller, raw_string, **kwargs): help = "You'll have a chance to change your mind before confirming, even if the name is free." # since this is a free-text field, we just have the one - options = { "key": "_default", "goto": "_check_charname" } + options = { "key": "_default", "goto": _check_charname } return (text, help), options def _check_charname(caller, raw_string, **kwargs):