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
Hello.
I am using match to test if testdate is any 29th. But if testdate is March 1, it is considered True.
match
>>> _2020 = datetime(2020, 3, 1, 0, 0, 0) >>> _2021 = datetime(2021, 3, 1, 0, 0, 0) >>> _2022 = datetime(2022, 3, 1, 0, 0, 0) >>> croniter.match("0 0 29 * *", _2020) True >>> croniter.match("0 0 29 * *", _2021) True >>> croniter.match("0 0 29 * *", _2022) True
Do you have any ideas on how to get around this?
The text was updated successfully, but these errors were encountered:
dup kiorky/croniter#1
Sorry, something went wrong.
No branches or pull requests
Hello.
I am using
match
to test if testdate is any 29th.But if testdate is March 1, it is considered True.
Do you have any ideas on how to get around this?
The text was updated successfully, but these errors were encountered: