summaryrefslogtreecommitdiffstats
path: root/commands/storage/lmi/scripts/storage/fs_cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'commands/storage/lmi/scripts/storage/fs_cmd.py')
-rw-r--r--commands/storage/lmi/scripts/storage/fs_cmd.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/storage/lmi/scripts/storage/fs_cmd.py b/commands/storage/lmi/scripts/storage/fs_cmd.py
index 93d91ca..5557852 100644
--- a/commands/storage/lmi/scripts/storage/fs_cmd.py
+++ b/commands/storage/lmi/scripts/storage/fs_cmd.py
@@ -108,7 +108,8 @@ class ListSupported(command.LmiLister):
caps = ns.LMI_FileSystemConfigurationCapabilities.first_instance()
cls = ns.LMI_FileSystemConfigurationCapabilities
for fstype in caps.SupportedActualFileSystemTypes:
- yield [cls.SupportedActualFileSystemTypesValues.value_name(fstype)]
+ fsname = cls.SupportedActualFileSystemTypesValues.value_name(fstype)
+ yield [fsname.lower()]
class Create(command.LmiCheckResult):