aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/grub.py
diff options
context:
space:
mode:
authorAdam Stokes <adam.stokes@ubuntu.com>2014-08-01 21:29:39 -0400
committerAdam Stokes <adam.stokes@ubuntu.com>2014-08-01 21:29:39 -0400
commite320ca865dc11057ea361c7a5446f9a3669764dc (patch)
treef7093e0d93c0a09bca1cd94c0a5f859a7affcc78 /sos/plugins/grub.py
parent9961bcef8704dda0c11d22337c6aef4a3880bd89 (diff)
downloadsos-e320ca865dc11057ea361c7a5446f9a3669764dc.tar.gz
[plugins] more pep8/pyflake plugin cleanup
There's a lot of changes, however, it is primarily formatting of existing code and no new code is introduced. Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
Diffstat (limited to 'sos/plugins/grub.py')
-rw-r--r--sos/plugins/grub.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/sos/plugins/grub.py b/sos/plugins/grub.py
index 926439f6..b439e889 100644
--- a/sos/plugins/grub.py
+++ b/sos/plugins/grub.py
@@ -1,19 +1,20 @@
-### This program is free software; you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation; either version 2 of the License, or
-## (at your option) any later version.
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
-## You should have received a copy of the GNU General Public License
-## along with this program; if not, write to the Free Software
-## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
+
class Grub(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
"""Grub information
"""