Replaced "is" with "==" to avoid SyntaxWarning

This commit is contained in:
Jared Dulmage 2020-05-05 14:21:40 -06:00
parent a2f2627c54
commit 9dc3367aaf

View File

@ -80,7 +80,7 @@ class output_print:
except ADSBError: except ADSBError:
return return
if msg.data["vs"] is 1: if msg.data["vs"] == 1:
retstr += " (aircraft is on the ground)" retstr += " (aircraft is on the ground)"
self._print(retstr) self._print(retstr)