From 0df5bfac09a3fce00db6b621f5e2a2f597789700 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Sun, 27 Sep 2009 17:19:22 +0200 Subject: No
at the end of list items --- blogthon.cgi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'blogthon.cgi') diff --git a/blogthon.cgi b/blogthon.cgi index f2d565c..66eb67c 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -425,7 +425,10 @@ else: print '
' + date + '
' print '
' for line in content: - print ' ' + line.strip() + '
' + if re.search('
  • ', line) or re.search('
      ', line) or re.search('
    ', line) or re.search('
      ', line) or re.search('
    ', line): + print ' ' + line.strip() + else: + print ' ' + line.strip() + '
    ' print '
  • ' print '
    ' print '
    ' -- cgit v1.2.3