From 6ef64cf259ad0e8559b70e849a5c753b581f8707 Mon Sep 17 00:00:00 2001 From: Ben Adida Date: Sun, 9 Feb 2014 13:52:04 -0800 Subject: [PATCH] more on password extraction --- extract-passwords-for-email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract-passwords-for-email.py b/extract-passwords-for-email.py index b110e87ef..d72705792 100644 --- a/extract-passwords-for-email.py +++ b/extract-passwords-for-email.py @@ -20,5 +20,5 @@ voters = Election.objects.get(uuid=election_uuid).voter_set.filter(voter_email=email) for voter in voters: - csv_output.writerow([voter.voter_id, voter.voter_password]) + csv_output.writerow([voter.voter_login_id, voter.voter_password])