aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
authorGareth Rees <gareth@mysociety.org>2014-08-05 11:22:49 +0100
committerGareth Rees <gareth@mysociety.org>2014-08-05 11:22:49 +0100
commitfd4c0668f89eabc1974c8454f85ef90bb3dfe0ee (patch)
tree7aebf75f6437e2b2d79322f329182d40df1fe90a /lib/tasks
parentba03b78e4e52356a57c8aace58145c6b14246485 (diff)
parent628abe70a91343c9fe026872fa1021243330a097 (diff)
Merge branch 'stats_export_body_name_quoting' into rails-3-develop
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/stats.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/stats.rake b/lib/tasks/stats.rake
index f09594529..46a645b4d 100644
--- a/lib/tasks/stats.rake
+++ b/lib/tasks/stats.rake
@@ -119,7 +119,7 @@ DESC
count ? count : 0
end
- row = [body.name] + stats
+ row = [%Q("#{ body.name }")] + stats
puts row.join(",")
end
end
@@ -147,7 +147,7 @@ DESC
count ? count : 0
end
- row = [body.name] + stats
+ row = [%Q("#{ body.name }")] + stats
puts row.join(",")
end
end