Emptylines in linklist are now interpreted as <br />

This commit is contained in:
Stefan Ritter 2009-03-09 16:35:57 +01:00
parent d03506dd2a
commit 126ed7eded
1 changed files with 3 additions and 1 deletions

View File

@ -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 ' &nbsp;<a href="' + line.split(" ")[0] + '" target="_blank">' + line.split(" ", 1)[1].strip() + '</a>&nbsp;<br />'
content.close()
print ' </div>'