In main.py line 143 the variable selection is being used to select the row in the congregation table that should be edited. This is wrong. What needs to be passed in is selection[0] which is the selection's id number.
In db.py line 129 must also be fixed also once the bug in main.py is fixed.
In main.py line 143 the variable
selection
is being used to select the row in the congregation table that should be edited. This is wrong. What needs to be passed in isselection[0]
which is the selection's id number.In db.py line 129 must also be fixed also once the bug in main.py is fixed.