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 1d402bf commit 15e5e80Copy full SHA for 15e5e80
scripts/update_changelog.py
@@ -144,10 +144,9 @@ def main():
144
145
release_version = result['new_version']
146
today = datetime.today()
147
- print('today: {}'.format(today))
148
- print('today.tzinfo: {}'.format(today.tzinfo))
+ print('today: {} (tzinfo={})'.format(today, today.tzinfo))
149
today = today.replace(tzinfo=timezone.utc)
150
151
release_date = today.strftime('%Y-%m-%d')
152
print('release_date: {}'.format(release_date))
153
release_title = '{} - {}'.format(release_version, release_date)
0 commit comments