From e3b02ffe6e69460e98e8fb66c6367d19b306addd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Wed, 28 Sep 2016 13:42:25 +0200 Subject: [PATCH] disks: fix typo --- PVE/API2/Disks.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Disks.pm b/PVE/API2/Disks.pm index d7030f8..3be6873 100644 --- a/PVE/API2/Disks.pm +++ b/PVE/API2/Disks.pm @@ -138,7 +138,7 @@ __PACKAGE__->register_method ({ $result = PVE::Diskmanage::get_smart_data($disk); } - $result->{health} = 'UNKOWN' if !defined $result->{health}; + $result->{health} = 'UNKNOWN' if !defined $result->{health}; return $result; }});