I have a form containing the following validator:
requires=IS_MATCH('\d{2}',error_message='no match 2 digits')
When the user violates this constraint an error message is being
displayed, however, this is written in the terminal:
<Storage {'region': <lazyT 'no match 2 digits'>}>
Why is that? Can I prevent this from happening in the production
environment?
Kind regards,
Annet.

