The following code in an old app stopped working. The last time I used this app was last June, so I don’t know when it stopped working.
except AuthenticationFailedError as e:
Notification(e.args, title=[...]).show()
This works:
except AuthenticationFailedError as e:
Notification(str(e.args), title=[...]).show()