Remove redundant frequency unit in email text

pull/102/head
Philip Heron 2019-01-22 12:42:15 +00:00
rodzic 5c766f353d
commit 7591856a41
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -95,7 +95,7 @@ class EmailNotification(object):
msg += '\n'
msg += 'Callsign: %s\n' % _id
msg += 'Type: %s\n' % telemetry['type']
msg += 'Frequency: %s MHz\n' % telemetry['freq']
msg += 'Frequency: %s\n' % telemetry['freq']
msg += 'Position: %.5f,%.5f\n' % (telemetry['lat'], telemetry['lon'])
msg += 'Altitude: %dm\n' % round(telemetry['alt'])
msg += '\n'