Skip to content
New issue

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

s3_management: Bump bad dates to october 17th #1257

Merged
merged 1 commit into from Dec 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion s3_management/manage.py
Expand Up @@ -51,7 +51,7 @@ def extract_package_build_time(full_package_name: str) -> datetime:
return datetime.now()

def between_bad_dates(package_build_time: datetime):
start_bad = datetime(year=2022, month=11, day=29)
start_bad = datetime(year=2022, month=8, day=17)
end_bad = datetime(year=2022, month=12, day=29)
return start_bad <= package_build_time <= end_bad

Expand Down