1
Fork 0

Resolved python deprecation warning in publish_toolstate.py

`utcnow()` is deprecated in favor of passing a timezone to `now()`. `utcnow()` would return a tz-naive datetime, while this returns a tz-aware datetime. For the purposes of the formatting we do, these are the same.
This commit is contained in:
Alex Gaynor 2024-10-14 15:27:37 -04:00 committed by GitHub
parent 9322d183f4
commit eb6062ce00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -235,7 +235,9 @@ try:
exit(0)
cur_commit = sys.argv[1]
cur_datetime = datetime.datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%SZ')
cur_datetime = datetime.datetime.now(datetime.timezone.utc).strftime(
'%Y-%m-%dT%H:%M:%SZ'
)
cur_commit_msg = sys.argv[2]
save_message_to_path = sys.argv[3]
github_token = sys.argv[4]