diff options
author | Louis Bouchard <louis.bouchard@canonical.com> | 2013-04-03 11:27:44 +0200 |
---|---|---|
committer | Louis Bouchard <louis.bouchard@canonical.com> | 2013-04-05 12:12:10 +0200 |
commit | b09f2539e13edc5707f3cacc1657aeb09413ce61 (patch) | |
tree | 7a709a9e62d2057cf18445cd3600a41a5b64a1c7 | |
parent | 76156e8b7a8b7a31e30038819d0aa0d7ca5de197 (diff) | |
download | sos-b09f2539e13edc5707f3cacc1657aeb09413ce61.tar.gz |
Fix optionList anomaly
-rw-r--r-- | sos/plugins/devicemapper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/devicemapper.py b/sos/plugins/devicemapper.py index aac90193..fbfe84d6 100644 --- a/sos/plugins/devicemapper.py +++ b/sos/plugins/devicemapper.py @@ -19,8 +19,8 @@ class devicemapper(Plugin, RedHatPlugin): """device-mapper related information (dm, lvm, multipath) """ - option_list = [("lvmdump", 'collect raw metadata from PVs', 'slow', False)] - option_list = [("lvmdump-a", 'use the -a option of lvmdump (requires the "lvmdump" option)', 'slow', False)] + option_list = [("lvmdump", 'collect raw metadata from PVs', 'slow', False), + ("lvmdump-a", 'use the -a option of lvmdump (requires the "lvmdump" option)', 'slow', False)] dmraid_options = ['V','b','r','s','tay','rD'] def do_lvmdump(self): |