diff --git a/geomagio/imfv283/IMFV283Parser.py b/geomagio/imfv283/IMFV283Parser.py index 5e310eea0452917d5819c8a81392eb657c8a23ca..5c45a94cfa931996ece87a1d104f2be384a6d2a5 100644 --- a/geomagio/imfv283/IMFV283Parser.py +++ b/geomagio/imfv283/IMFV283Parser.py @@ -368,7 +368,7 @@ class IMFV283Parser(object): byte3 = msg[offset + ness_byte + 2] byte2 = msg[offset + ness_byte + 1] byte1 = msg[offset + ness_byte] - if isinstance(byte1, str): + if not isinstance(byte1, int): # in python 3, these are already ints # python 2 returns characters, which need to be converted byte3 = ord(byte3)