diff --git a/script/statistics b/script/statistics
index 50363dc32..47c18312d 100755
--- a/script/statistics
+++ b/script/statistics
@@ -54,9 +54,7 @@ begin
month_count = Trace.count(:user_id, :distinct => true,
:conditions => "timestamp > NOW() - INTERVAL 28 DAY")
- puts "
GPX Files | Day | #{day_count} |
"
- puts "GPX Files | Week | #{week_count} |
"
- puts "GPX Files | Month | #{month_count} |
"
+ puts "GPX Files | #{day_count} | #{week_count} | #{month_count} |
"
day_count = OldNode.count(:user_id, :distinct => true,
:conditions => "timestamp > NOW() - INTERVAL 1 DAY")
@@ -65,9 +63,7 @@ begin
month_count = OldNode.count(:user_id, :distinct => true,
:conditions => "timestamp > NOW() - INTERVAL 28 DAY")
- puts "Nodes | Day | #{day_count} |
"
- puts "Nodes | Week | #{week_count} |
"
- puts "Nodes | Month | #{month_count} |
"
+ puts "Nodes | #{day_count} | #{week_count} | #{month_count} |
"
puts ""