diff options
author | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-07-11 17:07:59 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-07-11 17:07:59 +0200 |
commit | 7c912c0dcd9942db1c026137e471be557ffd80f7 (patch) | |
tree | 7aac7ee5329ebdb6c2dddfd75e5345a03db53f3a | |
parent | 8e50ed8aab0d7207317d8737b5642e7cae6618fc (diff) |
Small linklist fix
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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 '<br />' else: print ' <li class="linklist_list_entry"><a href="' + line.split(" ")[0] + '" target="_blank" class="months_list_entry">' + line.split(" ", 1)[1].strip() + '</a></li>' content.close() |