diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-16 23:40:30 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-16 23:40:30 +0100 |
commit | 56d0646c24a660fa5ea0596dbd6e8df6dfe5c12f (patch) | |
tree | 3aafa94b64561ad4875f504260b561f29314df3d | |
parent | d96716803ba81b388bf10d936c5c57a2a7283665 (diff) | |
download | todo-56d0646c24a660fa5ea0596dbd6e8df6dfe5c12f.tar.xz |
todo: Add --id and --file to docstring
-rwxr-xr-x | todo | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,13 +1,15 @@ #!/usr/bin/env python3 """ -Usage: todo [--priority | --date] [--reverse] +Usage: todo [--id | --date | --priority] [--reverse] [--file <file>] Options: - -p --priority Sort by priority + -i --id Sort by ID -d --date Sort by date + -p --priority Sort by priority -r --reverse Reverse sort order - -h --help Show this screen. - -v --version Show version. + -f --file Path to todo file + -h --help Show this screen + -v --version Show version """ from sys import exit |