aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Jaggars <jjaggars@redhat.com>2012-03-20 15:57:34 -0500
committerJesse Jaggars <jjaggars@redhat.com>2012-03-20 15:57:34 -0500
commit79b22b9dcca60f5d2b8d455d226a2bdb30c15fe2 (patch)
tree3e630b697d06075aeaa712e2d48d01c010c646fb
parent8e1e383fe952c661f1e3feda68b31f82268e65e3 (diff)
downloadsos-79b22b9dcca60f5d2b8d455d226a2bdb30c15fe2.tar.gz
adding a === to jarinfo.txt to allow for newlines inside of jar manifests
-rw-r--r--sos/plugins/as7.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/as7.py b/sos/plugins/as7.py
index a41e83ee..5f12be78 100644
--- a/sos/plugins/as7.py
+++ b/sos/plugins/as7.py
@@ -95,7 +95,7 @@ class AS7(Plugin, IndependentPlugin, AS7Mixin):
if jar_info_list:
jar_info_list.sort()
self.addStringAsFile("\n".join([
- "%s\n%s\n%s\n" % (name, checksum, manifest)
+ "%s\n%s\n%s\n===\n" % (name, checksum, manifest)
for (name, checksum, manifest) in jar_info_list]),
'jarinfo.txt')
else: