Skip to content

Commit

Permalink
Fix stupid replay bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Jessop authored and Mark Jessop committed May 5, 2024
1 parent 6e3caf0 commit e6e14c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log_playback.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def send_balloon_telemetry(json_data, udp_port=55672):
'longitude' : json_data['lon'],
'altitude': json_data['alt'],
'callsign': json_data['callsign'],
'time': parse(json_data['time']).strftime("%H:%H:%S"),
'time': parse(json_data['time']).strftime("%H:%M:%S"),
'comment': "Log Playback",
'replay_time': json_data['log_time']
}
Expand Down

0 comments on commit e6e14c3

Please sign in to comment.