Created
January 14, 2010 18:09
-
-
Save JosephPecoraro/277359 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/bin/pomo b/bin/pomo | |
index 193b7f4..84eb20a 100755 | |
--- a/bin/pomo | |
+++ b/bin/pomo | |
@@ -228,7 +228,7 @@ command :list do |c| | |
list.tasks.each_with_index do |task, i| | |
next if options.complete && !task.complete? | |
next if options.incomplete && task.complete? | |
- say ' %s %2d. %-45s : %d minutes' % [task.complete? ? '√' : ' ', i, task.to_s, task.length] | |
+ say ' %s %2d. %-45s : %d minutes' % [task.complete? ? '✓' : ' ', i, task.to_s, task.length] | |
total += task.length | |
end | |
say ' ' * 55 + '%d minutes' % total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment