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

make creation_date timezone-aware #664

Merged

Commits on Sep 27, 2024

  1. make creation_date timezone-aware

    `datetime.now()` returns a naive timestamp in the local TZ. When
    formatting this timestamp, `%z` and `%Z` directives would therefore
    always be empty.
    
    This commit calls `.astimezone()` to attach the system TZ to this
    timestamp. `%z` and `%Z` directives when formatting the timestamp are
    now respected.
    amorison committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    f399066 View commit details
    Browse the repository at this point in the history