mbridak / not1mm

Not1MM != N1MM, An amateur radio contest logger for Linux.
GNU General Public License v3.0
89 stars 18 forks source link

Deprecation warning for datetime.utcnow #63

Closed mbridak closed 7 months ago

mbridak commented 7 months ago
/home/mbridak/.local/share/pipx/venvs/not1mm/lib64/python3.12/site-packages/not1mm/bandmap.py:758: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
  spot["ts"] = datetime.utcnow().isoformat(" ")[:19]
mbridak commented 7 months ago

replacing with:

spot["ts"] = datetime.now(timezone.utc).isoformat(" ")[:19]
mbridak commented 7 months ago

pushed change 23-12-5.