Paradyne bugfix regexp

This commit is contained in:
Andrey Pazychev
2020-05-20 22:59:07 +03:00
parent 43ca61299e
commit a46f27792b

View File

@@ -43,7 +43,7 @@ sub os_ver {
sub model {
my $obj = shift;
$obj->description =~ /PARADYNE\s+(.*)\;/;
$obj->description =~ /PARADYNE\s+(.*)\;.*\;/;
return $1 if defined($1);
}