summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorZack Hobson2009-07-21 10:25:27 -0700
committerZack Hobson2009-07-21 10:25:33 -0700
commit538986dd21356b248806fc979998caa64cdedb50 (patch)
treef52044c6df090d17a9ffc013ba579b6f4ed881e6 /lib
parent00f5c6cf9c061ecf2dca4e8c2a558ffcaed041ed (diff)
downloadhcl-538986dd21356b248806fc979998caa64cdedb50.tar.bz2
Fix output on timer start, closes #1
Diffstat (limited to 'lib')
-rw-r--r--lib/hcl.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/hcl.rb b/lib/hcl.rb
index e0dbad8..894c5ee 100644
--- a/lib/hcl.rb
+++ b/lib/hcl.rb
@@ -118,9 +118,8 @@ EOM
else
Task.find ident, args.shift
end
- puts "Starting timer for #{task}"
- day_entry = task.start(*args)
- puts "Time is running on #{day_entry}"
+ task.start(*args)
+ puts "Started timer for #{task}"
end
def show *args