diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-07-15 13:19:12 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-07-15 13:19:12 -0700 |
commit | 3f8fed325a3dd8d51652dffab89880c1cf25656b (patch) | |
tree | b144283dfe552fb5aed3f5ad3ceb56dfb85aa3ad /python/scripts | |
parent | ce386a7a1f38c2c6289ce9d0bde269b4b1349154 (diff) | |
download | sandcrawler-3f8fed325a3dd8d51652dffab89880c1cf25656b.tar.gz sandcrawler-3f8fed325a3dd8d51652dffab89880c1cf25656b.zip |
row2json script: fix argument type
Diffstat (limited to 'python/scripts')
-rwxr-xr-x | python/scripts/ingestrequest_row2json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/scripts/ingestrequest_row2json.py b/python/scripts/ingestrequest_row2json.py index 0a457cd..8a353ca 100755 --- a/python/scripts/ingestrequest_row2json.py +++ b/python/scripts/ingestrequest_row2json.py @@ -44,7 +44,7 @@ def main(): "json_file", help="SQL output JSON file to process", type=argparse.FileType("r") ) parser.add_argument( - "force_recrawl", + "--force-recrawl", action="store_true", help="whether to add recrawl (SPNv2) flag to request", ) |