Skip to content

Commit

Permalink
Fix checkbutton variable loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ObaraEmmanuel committed Jan 20, 2022
1 parent a88814e commit eede390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion formation/handlers/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit eede390

Please sign in to comment.