At some point, the NWS stopped printing its name in all capitals in
alerts and forecasts, which had the effect of turning off the
"smart" header/footer trimming in the script. Switch to match the
current string they've been using lately.
if alert:
if verbose: return alert
else:
- if alert.find("\nNATIONAL WEATHER SERVICE") == -1:
+ if alert.find("\nNational Weather Service") == -1:
muted = False
else:
muted = True
if line.startswith("Expires:") \
and "Expires:" + valid_time > line:
return ""
- if muted and line.startswith("NATIONAL WEATHER SERVICE"):
+ if muted and line.startswith("National Weather Service"):
muted = False
line = ""
elif line == "&&":