From 0463c27174a805480902e5f46e5909f398dcc9eb Mon Sep 17 00:00:00 2001 From: Luke Baker Date: Mon, 10 Jan 2011 17:37:22 -0500 Subject: [PATCH] CSV: change N/A to NA --- app/models/question.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/question.rb b/app/models/question.rb index ffaabf2..4193b06 100644 --- a/app/models/question.rb +++ b/app/models/question.rb @@ -579,7 +579,7 @@ class Question < ActiveRecord::Base else # If no skip and no vote, this is an orphaned appearance prompt = a.prompt - csv << [ "Orphaned Appearance", a.id, a.voter_id, a.question_id, a.prompt.left_choice.id, a.prompt.left_choice.data.strip, a.prompt.right_choice.id, a.prompt.right_choice.data.strip, a.prompt_id, 'N/A', a.created_at, a.updated_at, 'N/A', '', a.voter.identifier, 'TRUE'] + csv << [ "Orphaned Appearance", a.id, a.voter_id, a.question_id, a.prompt.left_choice.id, a.prompt.left_choice.data.strip, a.prompt.right_choice.id, a.prompt.right_choice.data.strip, a.prompt_id, 'NA', a.created_at, a.updated_at, 'NA', '', a.voter.identifier, 'TRUE'] end end end -- libgit2 0.21.2