aboutsummaryrefslogtreecommitdiffstats
path: root/blogthon.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-xblogthon.cgi5
1 files changed, 2 insertions, 3 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index 7cbda8c..8dca038 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -418,7 +418,6 @@ else:
print ' <div class="comment_author">' + line.split(".", 1)[1].strip() + '</div>'
elif line.split(".", 1)[0] == "+":
print ' <div class="comment_date">' + line.split(".", 1)[1].strip() + '</div>'
- #print ' <div class="comment_content">'
else:
line = line.split(".", 1)[1]
print ' ' + line.strip() + '<br />'
@@ -448,8 +447,8 @@ else:
if comments == "True":
comments_file = glob.glob(entries_dir + title + '.comments')
if not comments_file and not post_display:
- print ' <div class="entry_comments">'
- print ' <a href="?p=' + title + '" class="entry_comments">no comments</a>'
+ print ' <div class="entry_comment">'
+ print ' <a href="?p=' + title + '" class="entry_comment">no comments</a>'
print ' </div>'
print ' </div>'
print ''