diff options
author | Adam Stokes <adam.stokes@ubuntu.com> | 2014-08-01 11:30:32 -0400 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2014-08-01 11:30:32 -0400 |
commit | c5569ff235190c65b7d4858652eca2e28df9bd6c (patch) | |
tree | df92b77856e617dd5a07609c06cfcc72fbf22ba3 | |
parent | e758535d3d9b7f053582f5db4640bef4cd0bfee9 (diff) | |
download | sos-c5569ff235190c65b7d4858652eca2e28df9bd6c.tar.gz |
[megacli] - remove rogue print statement
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r-- | sos/plugins/megacli.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sos/plugins/megacli.py b/sos/plugins/megacli.py index fa42da32..1630c486 100644 --- a/sos/plugins/megacli.py +++ b/sos/plugins/megacli.py @@ -27,10 +27,9 @@ class MegaCLI(Plugin, RedHatPlugin): def setup(self): if os.path.isfile("/opt/MegaRAID/MegaCli/MegaCli64"): - print "" self.add_custom_text("LSI MegaCLI is installed.<br>") self.get_megacli_files() - + def get_megacli_files(self): """ MegaCLI specific output """ @@ -42,4 +41,3 @@ class MegaCLI(Plugin, RedHatPlugin): ]) # vim: et ts=4 sw=4 - |