From c8cd647d707a0bb384fccbedf058db21e4ce9e37 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Mon, 2 Mar 2009 17:48:24 +0100 Subject: Bugfix: Fixed a bug with linktitles containing more than just one word --- blogthon.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blogthon.cgi b/blogthon.cgi index 8501a16..71bf580 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -103,7 +103,7 @@ if linklist == "True": print '
' print ' links
' for line in content: - print '  ' + line.split(" ")[-1].strip() + ' 
' + print '  ' + line.split(" ", 1)[1] + ' 
' print '
' content.close() -- cgit v1.2.3