From 7c912c0dcd9942db1c026137e471be557ffd80f7 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Sat, 11 Jul 2009 17:07:59 +0200 Subject: [PATCH] Small linklist fix --- blogthon.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blogthon.cgi b/blogthon.cgi index d02bf65..c354e8c 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -336,7 +336,7 @@ else: content = open("linklist", "r") for line in content: if line.strip() is "": - print '' + print '
' else: print '
  • ' + line.split(" ", 1)[1].strip() + '
  • ' content.close()