From 2634d0230871c6db12b8cd78d05cea2ae0008870 Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Fri, 18 Nov 2022 08:18:43 -0600 Subject: [PATCH 1/2] Make the contributors script use UTC for the time notice. --- ssg/contributors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssg/contributors.py b/ssg/contributors.py index 0be6479f684..91993de5b08 100644 --- a/ssg/contributors.py +++ b/ssg/contributors.py @@ -10,8 +10,8 @@ MANUAL_EDIT_WARNING = """This file is generated using the %s script. DO NOT MANUALLY EDIT!!!! -Last Modified: %s -""" % (os.path.basename(__file__), datetime.datetime.now().strftime("%Y-%m-%d %H:%M")) +Last Modified: %s UTC +""" % (os.path.basename(__file__), datetime.datetime.utcnow().strftime("%Y-%m-%d %H:%M")) ignored_emails = ( # No idea / ignore From 4ce21c8623a83e433aae157c2776774d44b24d16 Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Fri, 18 Nov 2022 08:19:24 -0600 Subject: [PATCH 2/2] Fix minor bug in release_process.md --- docs/release_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release_process.md b/docs/release_process.md index 2f89640717d..b01fb182e53 100644 --- a/docs/release_process.md +++ b/docs/release_process.md @@ -18,7 +18,7 @@ and ultimately allows the release process to happen while development continues - Update the contributors list by accessing the root folder of Content repository, in the **stabilization** branch, and executing the following command: ``` - PYTHONPATH=. utils/generate_contributors.py` + PYTHONPATH=. utils/generate_contributors.py ``` - De-duplicate names if necessary. - Make a commit send the a PR.