From 4c6d1e7c6f01487d919c93c3bfb6592c0dc9b1c7 Mon Sep 17 00:00:00 2001 From: shnavid Date: Thu, 12 Jul 2007 09:34:07 +0000 Subject: * cosmetic fixes. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@197 ef72aa8b-4018-0410-8976-d6e080ef94d8 --- src/sosreport | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/sosreport b/src/sosreport index ae8d6609..b00dfd6a 100755 --- a/src/sosreport +++ b/src/sosreport @@ -432,19 +432,19 @@ def sosreport(): print "The following plugins are currently enabled:" print for (plugname,plug) in loadedplugins: - print " %-15s %s" % (plugname,plug.get_description()) + print " %-25s %s" % (plugname,plug.get_description()) print print "The following plugin options are available:" print for (plug, plugname, optname, optparm) in alloptions: - print " %-15s %s [%d]" % (plugname + "." + optname, optparm["desc"], optparm["enabled"]) + print " %-25s %s [%d]" % (plugname + "." + optname, optparm["desc"], optparm["enabled"]) print print "The following plugins are currently disabled:" print for (plugname,plugclass) in skippedplugins: - print " %-15s %s" % (plugname,plugclass.get_description()) + print " %-25s %s" % (plugname,plugclass.get_description()) print sys.exit() @@ -463,7 +463,7 @@ def sosreport(): sys.exit(1) try: - raw_input("""This utility will collect some detailed information about the + raw_input("""This utility will collect some detailed information about the hardware and setup of your Red Hat Enterprise Linux system. This information will be used to diagnose problems with your system and will be considered confidential information. -- cgit