This commit is contained in:
qgarnier 2017-09-18 18:55:13 +02:00
parent 7b8e7af662
commit 11a7a80346
1 changed files with 3 additions and 3 deletions

View File

@ -155,12 +155,12 @@ sub manage_selection {
next;
}
next if ($result->{$mbean}->{LastCheck} !~ /^\s*(\d+)-(\S+)-(\d+)\s+(\d+):(\d+):(\d+)/);
next if ($result->{$mbean}->{LastCheck} !~ /^\s*(\d+)-(\d+)-(\d+)\s+(\d+):(\d+):(\d+)/);
my $dt = DateTime->new(
year => $3,
year => $1,
month => $2,
day => $1,
day => $3,
hour => $4,
minute => $5,
second => $6,