diff options
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-x | blogthon.cgi | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 2fcb619..bc246ab 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -243,13 +243,16 @@ else: if linklist == "True": print ' <div class="sidebarentry">' print ' <small>links</small><br />' - content = open("linklist", "r") - for line in content: - if line.strip() is "": - print ' <br />' - else: - print ' <a href="' + line.split(" ")[0] + '" target="_blank">' + line.split(" ", 1)[1].strip() + '</a> <br />' - content.close() + try: + content = open("linklist", "r") + for line in content: + if line.strip() is "": + print ' <br />' + else: + print ' <a href="' + line.split(" ")[0] + '" target="_blank">' + line.split(" ", 1)[1].strip() + '</a> <br />' + content.close() + except: + print ' <br />' print ' </div>' print ' </div>' |