diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-11-23 00:31:16 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-11-23 00:31:16 +0000 |
commit | 8852ce6ea830d25788f7765a4764317fab201bed (patch) | |
tree | b5076a311085e30df44854a6384a3dcfbfc10fa5 | |
parent | kernel updates (diff) | |
download | historical-8852ce6ea830d25788f7765a4764317fab201bed.tar.gz historical-8852ce6ea830d25788f7765a4764317fab201bed.tar.bz2 historical-8852ce6ea830d25788f7765a4764317fab201bed.zip |
little fix
-rwxr-xr-x | sys-apps/portage/files/webtools/clogtohtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-apps/portage/files/webtools/clogtohtml b/sys-apps/portage/files/webtools/clogtohtml index 64fdd8f3744d..f786f56ee060 100755 --- a/sys-apps/portage/files/webtools/clogtohtml +++ b/sys-apps/portage/files/webtools/clogtohtml @@ -41,7 +41,7 @@ while (pos<len(mylines)) and (entry<10): pos=pos+2 desc="" while mylines[pos][:-1]!="": - desc=desc+string.strip(mylines[pos][:-1]) + desc=desc+" "+string.strip(mylines[pos][:-1]) pos=pos+1 if desc: print '<p class="itemdesc">'+desc+'</p>' |