Mercurial > p > roundup > code
view roundup/anypy/datetime_.py @ 7618:b3fdbeeda89e
chore(deps): bump coverallsapp/github-action from 2.2.1 to 2.2.3 - https://github.com/roundup-tracker/roundup/pull/48
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 11 Sep 2023 00:01:45 -0400 |
| 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()
