diff options
author | 2023-05-17 12:18:14 +0530 | |
---|---|---|
committer | 2023-05-17 12:18:14 +0530 | |
commit | 5c87be603527b8366affc6ea89343d82b91baf35 (patch) | |
tree | 332b3ae1748d9381ef4bdf10f3c756ac8617d1ab /pydis_site/apps/content/utils.py | |
parent | satisfy linter (diff) | |
parent | Merge branch 'main' into subclassing_bot (diff) |
Merge branch 'subclassing_bot' of github.com:Diabolical5777/site into subclassing_bot
Diffstat (limited to 'pydis_site/apps/content/utils.py')
-rw-r--r-- | pydis_site/apps/content/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/apps/content/utils.py b/pydis_site/apps/content/utils.py index 347640dd..56f6283d 100644 --- a/pydis_site/apps/content/utils.py +++ b/pydis_site/apps/content/utils.py @@ -132,7 +132,7 @@ def set_tag_commit(tag: Tag) -> None: tag.last_commit = Commit( sha="68da80efc00d9932a209d5cccd8d344cec0f09ea", message="Initial Commit\n\nTHIS IS FAKE DEMO DATA", - date=datetime.datetime(2018, 2, 3, 12, 20, 26, tzinfo=datetime.timezone.utc), + date=datetime.datetime(2018, 2, 3, 12, 20, 26, tzinfo=datetime.UTC), authors=json.dumps([{"name": "Joseph", "email": "[email protected]"}]), ) return @@ -154,7 +154,7 @@ def set_tag_commit(tag: Tag) -> None: date = ( datetime.datetime .strptime(committer["date"], settings.GITHUB_TIMESTAMP_FORMAT) - .replace(tzinfo=datetime.timezone.utc) + .replace(tzinfo=datetime.UTC) ) if author["email"] == committer["email"]: |