You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TagQueue.put(self, line, line_num=None) has a problem if the line fails to parse, and line_num has the default value of None:
File "/home/avanpelt/git/libais/ais/tag_block.py", line 139, in put
logger.info('No NMEA match for line: %d, %s', line_num, line)
Message: 'No NMEA match for line: %d, %s'
One fix would be to use self.line_num in the logger.info call.
The text was updated successfully, but these errors were encountered:
TagQueue.put(self, line, line_num=None) has a problem if the line fails to parse, and line_num has the default value of None:
File "/home/avanpelt/git/libais/ais/tag_block.py", line 139, in put
logger.info('No NMEA match for line: %d, %s', line_num, line)
Message: 'No NMEA match for line: %d, %s'
One fix would be to use self.line_num in the logger.info call.
The text was updated successfully, but these errors were encountered: