diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-10-29 15:22:47 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-10-29 15:23:15 -0700 |
commit | 8e9106885bc736648c0bf0151a29d4bea9b72650 (patch) | |
tree | 8e3ca41508f79850bbfc3fa262ec519e8a5894eb /python/ingest_file.py | |
parent | ae37c8e32f1289816b69cd5a502a6bc5fd862414 (diff) | |
download | sandcrawler-8e9106885bc736648c0bf0151a29d4bea9b72650.tar.gz sandcrawler-8e9106885bc736648c0bf0151a29d4bea9b72650.zip |
better default CLI output (show usage)
Diffstat (limited to 'python/ingest_file.py')
-rwxr-xr-x | python/ingest_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/ingest_file.py b/python/ingest_file.py index f6f694e..ad78f50 100755 --- a/python/ingest_file.py +++ b/python/ingest_file.py @@ -78,7 +78,7 @@ def main(): args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do!", file=sys.stderr) + parser.print_help(file=sys.stderr) sys.exit(-1) args.func(args) |