diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-02-04 17:21:16 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-02-04 17:21:16 -0800 |
commit | 19fe566ff178d354cb04e722e15b73b92b359aaf (patch) | |
tree | 15693a0e5bf6703bcc7e4d3a45bd8a4c48c9a2b6 | |
parent | 6ba8bf1b163e70d654968e7157fade23f8f81650 (diff) | |
download | fatcat-19fe566ff178d354cb04e722e15b73b92b359aaf.tar.gz fatcat-19fe566ff178d354cb04e722e15b73b92b359aaf.zip |
allow-non-oa is a top-level flag, not sub-command
-rwxr-xr-x | python/fatcat_ingest.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/fatcat_ingest.py b/python/fatcat_ingest.py index 23043794..d7a221cc 100755 --- a/python/fatcat_ingest.py +++ b/python/fatcat_ingest.py @@ -225,9 +225,6 @@ def main(): sub_query.set_defaults(func=run_ingest_query) sub_query.add_argument('query', help="search query (same DSL as web interface search)") - sub_query.add_argument('--allow-non-oa', - action='store_true', - help="by default, we limit to OA releases. This removes that filter") sub_extid = subparsers.add_parser('extid', help="Create ingest requests for releases that have given extid defined") |