diff --git a/aprslib/parsing.py b/aprslib/parsing.py index b533077..5171f2d 100644 --- a/aprslib/parsing.py +++ b/aprslib/parsing.py @@ -248,7 +248,10 @@ def parse(packet): if parsed['symbol'] == '_': logger.debug("Attempting to parse weather report from comment") body, result = _parse_comment_weather(body) - parsed.update({'weather': result}) + parsed.update({ + 'comment': body.strip(' '), + 'weather': result, + }) else: # decode comment body, result = _parse_comment(body)