diff --git a/webtools/despot/syncit.pl b/webtools/despot/syncit.pl
index cded8dc4abf7..f090edbdd70a 100755
--- a/webtools/despot/syncit.pl
+++ b/webtools/despot/syncit.pl
@@ -314,7 +314,11 @@ while (@reprow = $repquery->fetchrow()) {
Owner: |
- | . join(', ', @ownernames) . qq| |
+
+
+ | . join(",\n ", @ownernames) . qq|
+
+ |
Source: |
@@ -351,14 +355,16 @@ while (@reprow = $repquery->fetchrow()) {
Peers: |
- |;
+ |
+ |;
my @peerlist;
foreach $i (@peers) {
$i =~ s/\@/@/g;
push @peerlist, qq|| . shift(@peernames) . "";
}
- print OWNERS join(', ', @peerlist);
- print OWNERS qq| |
+ print OWNERS join(",\n ", @peerlist);
+ print OWNERS qq|
+
Documents: |