We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e41670 commit e1e5233Copy full SHA for e1e5233
util/awx_metar_supplement.py
@@ -82,8 +82,8 @@ def main(network):
82
continue
83
# Crude lookup by timestamp
84
meat = line.split(st4, maxsplit=1)[1].strip()
85
- if meat[6] != "Z":
86
- LOG.warning("%s unparsable `%s`", st4, line)
+ if len(meat) < 8 or meat[6] != "Z":
+ LOG.info("%s unparsable `%s`", st4, line)
87
88
awx[meat[:6]] = f"{line}="
89
res = conn.execute(
0 commit comments