diff options
Diffstat (limited to 'python/refcat/cli.py')
-rw-r--r-- | python/refcat/cli.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/refcat/cli.py b/python/refcat/cli.py index c589310..a490553 100644 --- a/python/refcat/cli.py +++ b/python/refcat/cli.py @@ -7,7 +7,9 @@ Command line entry point for running various data tasks. - $ refcat.pyz [COMMAND | TASK] [OPTIONS] + $ refcat.pyz TASK [OPTIONS] + + $ refcat.pyz COMMAND [OPTIONS] Commands: ls, ll, deps, tasks, files, config, cat, completion @@ -32,6 +34,7 @@ from refcat import __version__ from refcat.deps import dump_deps, dump_deps_dot from refcat.settings import LOGGING_CONF_FILE, settings from refcat.tasks import * +from refcat.techreport import * from refcat.utils import columnize # These are utility classes of luigi. |