Remove task count information from task list.
This commit is contained in:
parent
f592340f7f
commit
d8e5fc9d1b
1 changed files with 2 additions and 1 deletions
|
@ -172,7 +172,8 @@ def main(args):
|
||||||
|
|
||||||
if unknown_tags:
|
if unknown_tags:
|
||||||
continue
|
continue
|
||||||
print ' play #%d (%s): task count=%d' % (playnum, label, len(play.tasks()))
|
print ' play #%d (%s):' % (playnum, label)
|
||||||
|
|
||||||
for task in play.tasks():
|
for task in play.tasks():
|
||||||
if (set(task.tags).intersection(pb.only_tags) and not
|
if (set(task.tags).intersection(pb.only_tags) and not
|
||||||
set(task.tags).intersection(pb.skip_tags)):
|
set(task.tags).intersection(pb.skip_tags)):
|
||||||
|
|
Loading…
Reference in a new issue