Commit 19bc5ada authored by Imran Hussain's avatar Imran Hussain
Browse files

Fix bug where only half the users marked as to be deleted get deleted

parent 4859cccc
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -358,10 +358,11 @@ def deleteUser(peopleList):
		emailAdminDeleteUser(person)
		
		# remove the entry from the list
		peopleList.remove(person)
		#peopleList.remove(person)
		
	# return to the deletemenu with an empty list as we've just deleted everyone
	deleteMenu(peopleList)
	#deleteMenu(peopleList)
    deleteMenu([])


def reminderMenu():