diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-03-09 16:35:57 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-03-09 16:35:57 +0100 |
commit | 126ed7ededc5ac42137b0381b0c32e86fda6b9a2 (patch) | |
tree | 23a8413c8d87ffaf28640d0dcd3be39a7459a75f | |
parent | d03506dd2a8ff30e7dcc14e49c121f4dedaa352d (diff) |
Emptylines in linklist are now interpreted as <br />
-rwxr-xr-x | blogthon.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index f2a3d0e..930ab49 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -144,7 +144,9 @@ if linklist == "True": print ' <small>links</small><br />' content = open("linklist", "r") for line in content: - if not line.strip() is "": + if line.strip() is "": + print ' <br />' + else: print ' <a href="' + line.split(" ")[0] + '" target="_blank">' + line.split(" ", 1)[1].strip() + '</a> <br />' content.close() print ' </div>' |