3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

Plugins/Weather: fix typo

This commit is contained in:
Pragmatic Software 2020-01-29 10:07:30 -08:00
parent d96317fe1a
commit 464e41b256

View File

@ -66,7 +66,7 @@ sub get_weather {
if ($response->is_success) {
$xml = $response->decoded_content;
} else {
return "Failed to fetch weather date: " . $response->status_line;
return "Failed to fetch weather data: " . $response->status_line;
}
my $dom = XML::LibXML->load_xml(string => $xml);