about summary refs log tree commit diff
path: root/notyet
diff options
context:
space:
mode:
Diffstat (limited to 'notyet')
-rwxr-xr-xnotyet2
1 files changed, 1 insertions, 1 deletions
diff --git a/notyet b/notyet
index f74631f..3078f58 100755
--- a/notyet
+++ b/notyet
@@ -81,7 +81,7 @@ class Entry < Struct.new(:depth, :state, :desc, :file, :line, :children)
   end
 
   def force(state)
-    self.state = state  unless "X?".index(self.state)
+    self.state = state  unless "xX?".index(self.state)
     children.each { |c| c.force(state) }
   end