diff options
-rw-r--r-- | sos/plugins/jars.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sos/plugins/jars.py b/sos/plugins/jars.py index b5506ef4..67bf7a23 100644 --- a/sos/plugins/jars.py +++ b/sos/plugins/jars.py @@ -29,10 +29,10 @@ class Jars(Plugin, RedHatPlugin): plugin_name = "jars" version = "1.0.0" profiles = ("java",) - option_list = [("append_locations", - "colon-separated list of additional JAR locations", - "fast", - "")] + option_list = [ + ("append_locations", "colon-separated list of additional JAR paths", + "fast", "") + ] # There is no standard location for JAR files and scanning # the whole filesystem could be very slow. Therefore we only |