From e6ff0c0b305c9602610ed03eef4e6a5076618a61 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Fri, 30 Oct 2009 15:00:06 +0100 Subject: Bugfix --- blogthon.cgi | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/blogthon.cgi b/blogthon.cgi index 56d3da6..2e8f84c 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -335,13 +335,16 @@ else: f = open(staticpage, 'r') for line in f: if line.split(':', 1)[0] == 'extern_link': - link = line.split(':', 1)[1].strip() + extern_link = line.split(':', 1)[1].strip() else: link = re.sub('\w+?\/', '', staticpage) break f.close() title = re.sub('\w+?\/\d+?-', '', staticpage) - print '
  • ' + title + '
  • ' + if extern_link: + print '
  • ' + title + '
  • ' + else: + print '
  • ' + title + '
  • ' print ' ' print ' ' print ' ' -- cgit v1.2.3