Skip to content

Commit 69c687d

Browse files
committed
Show the date when the authors file was generated
1 parent eeff0f0 commit 69c687d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

extras/authors/generate_authors_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Standard Library
2+
import datetime
23
import json
34
import os
45
import re
@@ -163,6 +164,8 @@ def generate_authors_file(
163164
with open(filename, 'w') as f:
164165
f.write('# Contributors and translators to this repository\n\n')
165166
f.write('Thank you all for contributing to the project, you are true heroes! 🫶\n\n')
167+
f.write(f'*Generated on {datetime.date.today()}*\n\n')
168+
f.write('---\n\n')
166169

167170
f.write('## Contributors\n\n')
168171
if contributors:

0 commit comments

Comments
 (0)