Skip to content

Commit

Permalink
fixed exception thrown by original forked wsjtx_packets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
barry-ha committed Apr 19, 2023
1 parent d33524c commit 897989c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/AutoGridCL/AutoGridCL.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ def hexdump(cls, src, length=16):
# timezone tomfoolery
@classmethod
def midnight_utc(cls):
utcnow = datetime.datetime.utcnow()
utcmidnight = datetime.datetime(utcnow.year, utcnow.month, utcnow.day, 0, 0)
utcnow = datetime.utcnow()
utcmidnight = datetime(utcnow.year, utcnow.month, utcnow.day, 0, 0)
return utcmidnight


Expand Down

0 comments on commit 897989c

Please sign in to comment.