diff options
author | Leah Neukirchen <leah@vuxu.org> | 2019-08-15 18:13:20 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2019-08-15 18:13:20 +0200 |
commit | 24911dea0afe29ddad3e8e295eb552a179f67db7 (patch) | |
tree | 6dbe17eb9460aa88da1aff492bd9509c186a83cb /notagain | |
parent | ef64daa1b99d55688aa0f61f204fe54df3c3b48a (diff) | |
download | notyet-24911dea0afe29ddad3e8e295eb552a179f67db7.tar.gz notyet-24911dea0afe29ddad3e8e295eb552a179f67db7.tar.xz notyet-24911dea0afe29ddad3e8e295eb552a179f67db7.zip |
add * for waiting-for tasks
Diffstat (limited to 'notagain')
-rwxr-xr-x | notagain | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notagain b/notagain index 6c474c8..faa40b4 100755 --- a/notagain +++ b/notagain @@ -10,7 +10,7 @@ def parse(io, filename=nil) todos = [Entry.new(-1, "/", "", nil, [])] while line = io.gets - if line =~ /\A(?:\s*(?:#|\/\/)\s)?(\s*)([-xX?])\s+(.*)/ + if line =~ /\A(?:\s*(?:#|\/\/)\s)?(\s*)([-xX?*])\s+(.*)/ force = nil i, state, desc = $1.size, $2, $3 |