view roundup/anypy/datetime_.py @ 7755:417c8ddc98ac

fix: undo last minute edit and try to get make checkin clean. Fixed admin.py. Change # noqa: 821 to # noqa: F821 to make ruff ignore undefined variable in the python 2 branch of the code. Hopefully the flake8 run in CI will accept the change from 821 to F821 and not error with an undefined variable.
author John Rouillard <rouilj@ieee.org>
date Fri, 01 Mar 2024 15:42:24 -0500
parents 6894f152d49a
children d5d7ecd31864
line wrap: on
line source

# https://issues.roundup-tracker.org/issue2551278
# datetime.utcnow deprecated
try:
    from datetime import datetime, UTC

    def utcnow():
        return datetime.now(UTC)

except ImportError:
    from datetime import datetime

    def utcnow():
        return datetime.utcnow()

Roundup Issue Tracker: http://roundup-tracker.org/