From eede3908d50c8754665578a5d4783c639f565c00 Mon Sep 17 00:00:00 2001 From: ObaraEmmanuel Date: Thu, 20 Jan 2022 18:53:46 +0300 Subject: [PATCH] Fix checkbutton variable loading --- formation/handlers/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formation/handlers/misc.py b/formation/handlers/misc.py index 92520da..6702e38 100644 --- a/formation/handlers/misc.py +++ b/formation/handlers/misc.py @@ -19,7 +19,7 @@ def handle(cls, widget, config, **kwargs): return for prop in properties: # find the variable which will be preloaded on the builder - handle_method(**{prop: getattr(builder, properties[prop], '')}) + handle_method(**{prop: getattr(builder, str(properties[prop]), '')}) _common_redirect = {