We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Under current setup, harvester silently overrules the options in the order listed. This means that harvester --date "{2019-01-01}:{2020-01-01}" --all will end up running as harvester --date "{first-date}:{today}".
harvester
harvester --date "{2019-01-01}:{2020-01-01}" --all
harvester --date "{first-date}:{today}"
To resolve, the segment-related options should be placed in a mutually exclusive argparse group.
argparse
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Under current setup,
harvester
silently overrules the options in the order listed. This means thatharvester --date "{2019-01-01}:{2020-01-01}" --all
will end up running asharvester --date "{first-date}:{today}"
.To resolve, the segment-related options should be placed in a mutually exclusive
argparse
group.The text was updated successfully, but these errors were encountered: