summaryrefslogtreecommitdiffstats
path: root/lib/hcl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/hcl.rb')
-rw-r--r--lib/hcl.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/hcl.rb b/lib/hcl.rb
index 5237e2d..3231790 100644
--- a/lib/hcl.rb
+++ b/lib/hcl.rb
@@ -212,7 +212,6 @@ EOM
date = args.empty? ? nil : Chronic.parse(args.join(' '))
total_hours = 0.0
DayEntry.all(date).each do |day|
- # TODO more information and formatting options
running = day.running? ? '(running) ' : ''
puts "\t#{as_hours day.hours}\t#{running}#{day.project} #{day.notes}"[0..78]
total_hours = total_hours + day.hours.to_f