added --show-progress expiremental functionality

This commit is contained in:
llnu 2020-01-15 17:17:50 +01:00
commit e350c2e076
2 changed files with 83 additions and 6 deletions

View file

@ -69,6 +69,9 @@ def parse_argv(argv, version):
parser['track'].add_argument(
"-n", "--no-comment", help="disable comment prompting after tracking",
action='store_false', dest="comment")
parser['track'].add_argument(
"--show-progress", help="show time spent in session",
action='store_true')
parser['track'].add_argument(
"project", help="project to track time for", nargs=1)