In the voter list there is an option to delete a voter. However, this fails for voters of type password if they have already voted.
The problem is that voter.user is not defined for a password voter, so that sending the email with voter.user.send_message fails. #377 fixes it using voter.send_message.
In the voter list there is an option to delete a voter. However, this fails for voters of type password if they have already voted.
The problem is that
voter.user
is not defined for a password voter, so that sending the email withvoter.user.send_message
fails. #377 fixes it usingvoter.send_message
.