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

Add Timezone to the Contributors Script #9844

Merged
merged 2 commits into from
Nov 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions ssg/contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down