diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2017-01-19 11:53:54 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-01-19 11:53:54 +0000 |
commit | 5136c2743b9bd5c363a9df45767a08e1ffb424d6 (patch) | |
tree | a950894ae9941f5ee1a72363157855b6019b15c7 | |
parent | 3dfcdac0e3e0c42337eb846534b323a739bfc068 (diff) | |
download | sos-5136c2743b9bd5c363a9df45767a08e1ffb424d6.tar.gz |
[jars] improve option_list formatting
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-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 |