We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeff0f0 commit 69c687dCopy full SHA for 69c687d
extras/authors/generate_authors_api.py
@@ -1,4 +1,5 @@
1
# Standard Library
2
+import datetime
3
import json
4
import os
5
import re
@@ -163,6 +164,8 @@ def generate_authors_file(
163
164
with open(filename, 'w') as f:
165
f.write('# Contributors and translators to this repository\n\n')
166
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')
169
170
f.write('## Contributors\n\n')
171
if contributors:
0 commit comments